More progress on the basic distributed object facilities.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@16 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
//
|
||||
// $Id: ObjectAccessException.java,v 1.1 2001/06/01 05:01:52 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.dobj;
|
||||
|
||||
/**
|
||||
* An object access exception is delivered when an object is not
|
||||
* accessible to a requesting subscriber for some reason or other. For
|
||||
* some access exceptions, special derived classes exist to communicate
|
||||
* the error. For others, a message string explaining the access failure
|
||||
* is provided.
|
||||
*/
|
||||
public class ObjectAccessException extends Exception
|
||||
{
|
||||
public ObjectAccessException (String message)
|
||||
{
|
||||
super(message);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user