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
Exception that may be thrown by an embedded directory server if a problem occurs while performing an operation on the
server.
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates 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 Details
-
EmbeddedDirectoryServerException
Creates a new exception with the provided message.- Parameters:
message
- The message that explains the problem that occurred.
-
EmbeddedDirectoryServerException
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.
-