com.coyotegulch.jisp
Class DatabaseException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.io.IOException
              extended by com.coyotegulch.jisp.DatabaseException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
DuplicateKey, KeyNotFound

public class DatabaseException
extends java.io.IOException

Standard exception type thrown by the object database classes.

See Also:
IndexedObjectDatabase, Serialized Form

Constructor Summary
DatabaseException()
          Constructs a new DatabaseException with null as its error message string.
DatabaseException(java.lang.String message)
          Constructs a new DatabaseException with message as its error message string.
 
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

DatabaseException

public DatabaseException()
Constructs a new DatabaseException with null as its error message string.


DatabaseException

public DatabaseException(java.lang.String message)
Constructs a new DatabaseException with message as its error message string.

Parameters:
message - Error message string.