Class UnknownColumnException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- technology.openpool.ldap.adapter.api.database.exception.UncheckedSQLException
-
- technology.openpool.ldap.adapter.api.database.exception.UnknownColumnException
-
- All Implemented Interfaces:
Serializable
public class UnknownColumnException extends UncheckedSQLException
The exception type for unknown columns.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnknownColumnException()Instantiates a new unknown column exception.UnknownColumnException(String message)Instantiates a new unknown column exception.UnknownColumnException(String message, Throwable throwable)Instantiates a new unknown column exception.UnknownColumnException(Throwable throwable)Instantiates a new unknown column 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
-
UnknownColumnException
public UnknownColumnException()
Instantiates a new unknown column exception.
-
UnknownColumnException
public UnknownColumnException(String message)
Instantiates a new unknown column exception.- Parameters:
message- the message
-
UnknownColumnException
public UnknownColumnException(String message, Throwable throwable)
Instantiates a new unknown column exception.- Parameters:
message- the messagethrowable- the throwable
-
UnknownColumnException
public UnknownColumnException(Throwable throwable)
Instantiates a new unknown column exception.- Parameters:
throwable- the throwable
-
-