Class EmbeddedDirectoryServerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.opends.server.types.OpenDsException
-
- org.forgerock.opendj.server.embedded.EmbeddedDirectoryServerException
-
- All Implemented Interfaces:
Serializable
,LocalizableException
public final class EmbeddedDirectoryServerException extends OpenDsException
Exception that may be thrown by an embedded directory server if a problem occurs while performing an operation on the server.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EmbeddedDirectoryServerException(LocalizableMessage message)
Creates a new exception with the provided message.EmbeddedDirectoryServerException(LocalizableMessage message, Throwable cause)
Creates a new exception with the provided message and root cause.
-
Method Summary
-
Methods inherited from class org.opends.server.types.OpenDsException
getMessageObject
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
EmbeddedDirectoryServerException
public EmbeddedDirectoryServerException(LocalizableMessage message)
Creates a new exception with the provided message.- Parameters:
message
- The message that explains the problem that occurred.
-
EmbeddedDirectoryServerException
public EmbeddedDirectoryServerException(LocalizableMessage message, Throwable cause)
Creates a new exception with the provided message and root cause.- Parameters:
message
- The message that explains the problem that occurred.cause
- The exception that was caught to trigger this exception.
-
-