Package org.opends.server.types
Class IdentifiedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.opends.server.types.OpenDsException
-
- org.opends.server.types.IdentifiedException
-
- All Implemented Interfaces:
Serializable
,LocalizableException
- Direct Known Subclasses:
AciException
,InitializationException
,LDIFException
@PublicAPI(stability=VOLATILE, mayInvoke=true) public abstract class IdentifiedException extends OpenDsException
This class defines a base exception that should be extended by any exception that exposes a unique identifier for the associated message.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
IdentifiedException(Throwable cause)
Creates a new identified exception with the provided information.protected
IdentifiedException(LocalizableMessage message)
Creates a new identified exception with the provided information.protected
IdentifiedException(LocalizableMessage message, Throwable cause)
Creates a new identified exception with the provided information.
-
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
-
IdentifiedException
protected IdentifiedException(LocalizableMessage message)
Creates a new identified exception with the provided information.- Parameters:
message
- The message that explains the problem that occurred.
-
IdentifiedException
protected IdentifiedException(Throwable cause)
Creates a new identified exception with the provided information.- Parameters:
cause
- The underlying cause that triggered this exception.
-
IdentifiedException
protected IdentifiedException(LocalizableMessage message, Throwable cause)
Creates a new identified exception with the provided information.- Parameters:
message
- The message that explains the problem that occurred.cause
- The underlying cause that triggered this exception.
-
-