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:
Serializable
- Direct Known Subclasses:
DuplicateKey
,KeyNotFound
Standard exception type thrown by the object database classes.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newDatabaseException
with null as its error message string.DatabaseException
(String message) Constructs a newDatabaseException
withmessage
as its error message string. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DatabaseException
public DatabaseException()Constructs a newDatabaseException
with null as its error message string. -
DatabaseException
Constructs a newDatabaseException
withmessage
as its error message string.- Parameters:
message
- Error message string.
-