8a4c46badc
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
17 lines
403 B
Java
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);
|
|
}
|
|
}
|