net.charlesames.utility.oops
Class NoSuchObjectException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by java.lang.IllegalArgumentException
                  extended by net.charlesames.utility.oops.NoSuchObjectException
All Implemented Interfaces:
java.io.Serializable

public class NoSuchObjectException
extends java.lang.IllegalArgumentException

Thrown to indicate that an object sought by a method does not exist.

Author:
Charles Ames
See Also:
Serialized Form

Constructor Summary
NoSuchObjectException()
          Constructs a NoSuchObjectException with no detail message.
NoSuchObjectException(java.lang.String message)
          Constructs a NoSuchObjectException with the specified detail message.
NoSuchObjectException(java.lang.String message, java.lang.Throwable cause)
          Constructs a NoSuchObjectException with the specified detail message and cause.
NoSuchObjectException(java.lang.Throwable cause)
          Constructs a NoSuchObjectException with the specified cause.
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NoSuchObjectException

public NoSuchObjectException()
Constructs a NoSuchObjectException with no detail message.


NoSuchObjectException

public NoSuchObjectException(java.lang.String message,
                             java.lang.Throwable cause)
Constructs a NoSuchObjectException with the specified detail message and cause.

Parameters:
message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

NoSuchObjectException

public NoSuchObjectException(java.lang.String message)
Constructs a NoSuchObjectException with the specified detail message.

Parameters:
message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).

NoSuchObjectException

public NoSuchObjectException(java.lang.Throwable cause)
Constructs a NoSuchObjectException with the specified cause.

Parameters:
cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)