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,org.forgerock.i18n.LocalizableException
- Direct Known Subclasses:
AuthenticationException,OperationRejectedException,OperationsException
public abstract class AdminException extends Exception implements org.forgerock.i18n.LocalizableException
Exceptions thrown when interacting with administration framework.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAdminException(org.forgerock.i18n.LocalizableMessage message)Create an admin exception with a message.protectedAdminException(org.forgerock.i18n.LocalizableMessage message, Throwable cause)Create an admin exception with a message and cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.forgerock.i18n.LocalizableMessagegetMessageObject()-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
AdminException
protected AdminException(org.forgerock.i18n.LocalizableMessage message, Throwable cause)Create an admin exception with a message and cause.- Parameters:
message- The message.cause- The cause.
-
AdminException
protected AdminException(org.forgerock.i18n.LocalizableMessage message)
Create an admin exception with a message.- Parameters:
message- The message.
-
-