Package com.coyotegulch.jisp
Class DatabaseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- 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
Constructors Constructor Description DatabaseException()
Constructs a newDatabaseException
with null as its error message string.DatabaseException(java.lang.String message)
Constructs a newDatabaseException
withmessage
as its error message string.
-
-
-
Constructor Detail
-
DatabaseException
public DatabaseException()
Constructs a newDatabaseException
with null as its error message string.
-
DatabaseException
public DatabaseException(java.lang.String message)
Constructs a newDatabaseException
withmessage
as its error message string.- Parameters:
message
- Error message string.
-
-