Class DatabaseConnectionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
dimstyl.orm.exceptions.DatabaseConnectionException
- All Implemented Interfaces:
Serializable
Exception thrown when a database connection issue occurs.
This exception is used to indicate failures in establishing, maintaining or closing a connection.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDatabaseConnectionException
(String message) Constructs a newDatabaseConnectionException
with the specified detail message.DatabaseConnectionException
(String message, Throwable cause) Constructs a newDatabaseConnectionException
with the specified detail message and 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
-
DatabaseConnectionException
Constructs a newDatabaseConnectionException
with the specified detail message.- Parameters:
message
- The detail message explaining the reason for the exception.
-
DatabaseConnectionException
-