Package org.cryptacular
Class CryptoException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.cryptacular.CryptoException
- All Implemented Interfaces:
Serializable
Runtime error describing a generic cryptographic problem (e.g. bad padding, unsupported cipher).
- Author:
- Middleware Services
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCryptoException
(String message) Creates a new instance with the given error message.CryptoException
(String message, Throwable cause) Creates a new instance with the given error 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
-
CryptoException
Creates a new instance with the given error message.- Parameters:
message
- Error message.
-
CryptoException
Creates a new instance with the given error message and cause.- Parameters:
message
- Error message.cause
- Error cause.
-