Class DatabaseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.drasyl.DrasylException
org.drasyl.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 org.drasyl.DrasylException
equals, hashCodeMethods 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.)
 
 -