Files
narya/src/java/com/threerings/presents/dobj/NoSuchObjectException.java
T
Michael Bayne 8a4c46badc The first great Three Rings renaming. Cocktail changed to Narya, Cher
changed to Presents and Party changed to Crowd. Whee!


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@431 542714f4-19e9-0310-aa3c-eee0fc999fb1
2001-10-11 04:07:54 +00:00

17 lines
403 B
Java

//
// $Id: NoSuchObjectException.java,v 1.2 2001/10/11 04:07:52 mdb Exp $
package com.threerings.presents.dobj;
/**
* A no such object exception is delivered when a subscriber requests
* access to an object that does not exist.
*/
public class NoSuchObjectException extends ObjectAccessException
{
public NoSuchObjectException (int oid)
{
super("m.no_such_object\t" + oid);
}
}