Class SecretEncryptor.EncryptionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.scivicslab.turingworkflow.plugins.secret.SecretEncryptor.EncryptionException
- All Implemented Interfaces:
Serializable
- Enclosing class:
SecretEncryptor
Exception thrown when encryption or decryption operations fail.
Wraps the underlying cryptographic or I/O exception with a descriptive message.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionEncryptionException(String message, Throwable cause) Creates a newEncryptionExceptionwith the specified detail 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
-
EncryptionException
Creates a newEncryptionExceptionwith the specified detail message and cause.- Parameters:
message- a description of what went wrongcause- the underlying exception
-