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
public class KeystoreManagerException extends RuntimeException
Represents an exception from an operation using the KeyStoreManager class.- Since:
- 2.0.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description KeystoreManagerException(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.KeystoreManagerException(Throwable t)
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 Detail
-
KeystoreManagerException
public KeystoreManagerException(String message)
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
public KeystoreManagerException(String message, Throwable cause)
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
public KeystoreManagerException(Throwable t)
Constructs a new KeyStoreManagerException with the specified throwable.- Parameters:
t
- The cause of the Exception.
-
-