Package org.opends.server.types
Class InitializationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opends.server.types.OpenDsException
org.opends.server.types.InitializationException
- All Implemented Interfaces:
Serializable,LocalizableException
This class defines an exception that may be thrown if a problem occurs while trying to initialize a Directory Server
component.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInitializationException(Throwable cause) Creates a new initialization exception with the provided root cause.Creates a new initialization exception with the provided message.InitializationException(LocalizableMessage message, Throwable cause) Creates a new initialization exception with the provided message and root cause. -
Method Summary
Methods inherited from class org.opends.server.types.OpenDsException
getMessageObjectMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InitializationException
Creates a new initialization exception with the provided message.- Parameters:
message- The message that explains the problem that occurred.
-
InitializationException
Creates a new initialization exception with the provided root cause.- Parameters:
cause- The exception that was caught to trigger this exception.
-
InitializationException
Creates a new initialization 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.
-