Class DatabaseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.drasyl.node.plugin.groups.manager.database.DatabaseException
- All Implemented Interfaces:
Serializable
This exception signals an error occurred during execution in
DatabaseAdapter
implementations.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDatabaseException(String message) DatabaseException(String message, Throwable cause) -
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
- Parameters:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
-
DatabaseException
- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-