Class EncryptionError
-
- All Implemented Interfaces:
-
java.io.Serializable
public final class EncryptionError extends ExceptionSignals that an error occurred during encryption.
-
-
Constructor Summary
Constructors Constructor Description EncryptionError(String message, Throwable cause)Constructs a EncryptionErrorwith the specified message and cause.EncryptionError(String message)Constructs a EncryptionErrorwith the specified message.
-
Method Summary
Modifier and Type Method Description -
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
EncryptionError
EncryptionError(String message, Throwable cause)
Constructs aEncryptionErrorwith the specified message and cause.- Parameters:
message- the detail message which is saved for later retrieval by the getMessage methodcause- the cause which is saved for later retrieval by the getCause method.
-
EncryptionError
EncryptionError(String message)
Constructs aEncryptionErrorwith the specified message.- Parameters:
message- the detail message which is saved for later retrieval by the getMessage method
-
-
-
-