com.threerings.presents.dobj
Class ObjectAccessException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.threerings.presents.dobj.ObjectAccessException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
NoSuchObjectException

public class ObjectAccessException
extends Exception

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.

See Also:
Serialized Form

Constructor Summary
ObjectAccessException(Exception cause)
          Constructs a object access exception with the specified chained causing event.
ObjectAccessException(String message)
          Constructs a object access exception with the specified error message.
ObjectAccessException(String message, Exception cause)
          Constructs a object access exception with the specified error message and the chained causing event.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ObjectAccessException

public ObjectAccessException(String message)
Constructs a object access exception with the specified error message.


ObjectAccessException

public ObjectAccessException(String message,
                             Exception cause)
Constructs a object access exception with the specified error message and the chained causing event.


ObjectAccessException

public ObjectAccessException(Exception cause)
Constructs a object access exception with the specified chained causing event.