Package org.forgerock.openam.secrets
Class SecretException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.forgerock.openam.secrets.SecretException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SecretConfigurationException
,SecretInitialisationException
,SecretInstantiationException
,UnavailableSecretReferenceException
A class of exception arising from use of the secrets API.
- Since:
- AM 6.5.0
- See Also:
-
Constructor Summary
ModifierConstructorDescriptionprotected
SecretException
(String message) Construct a secret exception with the given message.protected
SecretException
(String message, Throwable cause) Construct a secret exception with the given message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SecretException
Construct a secret exception with the given message.- Parameters:
message
- The message.
-
SecretException
Construct a secret exception with the given message and cause.- Parameters:
message
- The message.cause
- The cause.
-