Class UncheckedSQLException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- technology.openpool.ldap.adapter.api.database.exception.UncheckedSQLException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
UnknownColumnException
public class UncheckedSQLException extends RuntimeException
The type unchecked SQL exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UncheckedSQLException()Instantiates a new unchecked SQL exception.UncheckedSQLException(String message)Instantiates a new unchecked SQL exception.UncheckedSQLException(String message, Throwable throwable)Instantiates a new unchecked SQL exception.UncheckedSQLException(Throwable throwable)Instantiates a new unchecked SQL exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UncheckedSQLException
public UncheckedSQLException()
Instantiates a new unchecked SQL exception.
-
UncheckedSQLException
public UncheckedSQLException(String message)
Instantiates a new unchecked SQL exception.- Parameters:
message- the message
-
UncheckedSQLException
public UncheckedSQLException(String message, Throwable throwable)
Instantiates a new unchecked SQL exception.- Parameters:
message- the messagethrowable- the throwable
-
UncheckedSQLException
public UncheckedSQLException(Throwable throwable)
Instantiates a new unchecked SQL exception.- Parameters:
throwable- the throwable
-
-