com.coyotegulch.jisp
Class DatabaseException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.io.IOException
              extended bycom.coyotegulch.jisp.DatabaseException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
DuplicateKeyException, KeyNotFoundException

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.
 
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.