Package org.forgerock.security.keystore
Class KeystoreManagerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.forgerock.security.keystore.KeystoreManagerException
- All Implemented Interfaces:
Serializable
Represents an exception from an operation using the KeyStoreManager class.
- Since:
- 2.0.0
- See Also:
-
Constructor Summary
ConstructorDescriptionKeystoreManagerException
(String message) Constructs a new KeystoreManagerException with the specified detail message.KeystoreManagerException
(String message, Throwable cause) Constructs a new KeystoreManagerException with the specified detail message.Constructs a new KeyStoreManagerException with the specified throwable. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
KeystoreManagerException
Constructs a new KeystoreManagerException with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable)
.- Parameters:
message
- The detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
KeystoreManagerException
Constructs a new KeystoreManagerException with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable)
.- Parameters:
message
- The detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.cause
- TheThrowable
that caused the exception.
-
KeystoreManagerException
Constructs a new KeyStoreManagerException with the specified throwable.- Parameters:
t
- The cause of the Exception.
-