Package org.opends.server.types
Class CryptoManagerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opends.server.types.OpenDsException
org.opends.server.types.CryptoManagerException
- All Implemented Interfaces:
Serializable
,LocalizableException
- Direct Known Subclasses:
CorruptedEntryException
This class defines an exception that is thrown in the case of problems with encryption key management, and is a
wrapper for a variety of other cipher related exceptions.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCryptoManagerException
(LocalizableMessage message) Creates an exception with the given message.CryptoManagerException
(LocalizableMessage message, Exception cause) Creates an exception with the given message and underlying 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
-
CryptoManagerException
Creates an exception with the given message.- Parameters:
message
- the message message.
-
CryptoManagerException
Creates an exception with the given message and underlying cause.- Parameters:
message
- The message message.cause
- The underlying cause.
-