Initial version of node map facilities.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@281 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2001-08-20 22:56:55 +00:00
parent 829de84fb6
commit 67daecdf96
13 changed files with 853 additions and 0 deletions
@@ -0,0 +1,16 @@
//
// $Id: DuplicateNodeException.java,v 1.1 2001/08/20 22:56:55 shaper Exp $
package com.threerings.nodemap;
/**
* Thrown when an action is attempted on a node that is already
* present in the node map.
*/
public class DuplicateNodeException extends NodeMapException
{
public DuplicateNodeException ()
{
super("error.duplicate_node");
}
}