Package org.forgerock.audit.secure
Class SecureStorageException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.forgerock.audit.secure.SecureStorageException
-
- All Implemented Interfaces:
Serializable
public class SecureStorageException extends Exception
Exception that can be thrown by a SecureStorage implementation.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SecureStorageException(String message)
Constructs an SecureStorageException using the givenmessage
.SecureStorageException(String message, Throwable cause)
Constructs an SecureStorageException using the givenmessage
and parentcause
.SecureStorageException(Throwable cause)
Constructs an SecureStorageException using the given parentcause
.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SecureStorageException
public SecureStorageException(Throwable cause)
Constructs an SecureStorageException using the given parentcause
.- Parameters:
cause
- Error cause
-
SecureStorageException
public SecureStorageException(String message)
Constructs an SecureStorageException using the givenmessage
.- Parameters:
message
- Error message
-
-