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
@PublicAPI(stability=VOLATILE, mayInstantiate=false, mayExtend=false, mayInvoke=true) public class CryptoManagerException extends OpenDsException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CryptoManagerException(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 Detail
-
CryptoManagerException
public CryptoManagerException(LocalizableMessage message)
Creates an exception with the given message.- Parameters:
message
- the message message.
-
CryptoManagerException
public CryptoManagerException(LocalizableMessage message, Exception cause)
Creates an exception with the given message and underlying cause.- Parameters:
message
- The message message.cause
- The underlying cause.
-
-