67daecdf96
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@281 542714f4-19e9-0310-aa3c-eee0fc999fb1
17 lines
339 B
Java
17 lines
339 B
Java
//
|
|
// $Id: NodeMapException.java,v 1.1 2001/08/20 22:56:55 shaper Exp $
|
|
|
|
package com.threerings.nodemap;
|
|
|
|
/**
|
|
* Thrown when an error occurs while performing certain activities
|
|
* involving a node map object.
|
|
*/
|
|
public class NodeMapException extends Exception
|
|
{
|
|
public NodeMapException (String message)
|
|
{
|
|
super(message);
|
|
}
|
|
}
|