Package org.forgerock.opendj.config
Class AdminException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.opendj.config.AdminException
- All Implemented Interfaces:
Serializable
,LocalizableException
- Direct Known Subclasses:
OperationRejectedException
,OperationsException
Exceptions thrown when interacting with administration framework.
- See Also:
-
Constructor Summary
ModifierConstructorDescriptionprotected
AdminException
(LocalizableMessage message) Create an admin exception with a message.protected
AdminException
(LocalizableMessage message, Throwable cause) Create an admin exception with a message and cause. -
Method Summary
Modifier and TypeMethodDescriptionReturns the localizable message that explains the problem that occurred.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AdminException
Create an admin exception with a message and cause.- Parameters:
message
- The message.cause
- The cause.
-
AdminException
Create an admin exception with a message.- Parameters:
message
- The message.
-
-
Method Details
-
getMessageObject
Description copied from interface:LocalizableException
Returns the localizable message that explains the problem that occurred.- Specified by:
getMessageObject
in interfaceLocalizableException
- Returns:
- The localizable message that explains the problem that occurred.
-