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:
Michael Bayne
2001-06-01 05:01:52 +00:00
parent 04f3aacab2
commit 567a2ada10
6 changed files with 239 additions and 10 deletions
@@ -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);
}
}