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