Package vaultWeb.exceptions
Class EncryptionFailedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
vaultWeb.exceptions.EncryptionFailedException
- All Implemented Interfaces:
Serializable
@ResponseStatus(INTERNAL_SERVER_ERROR)
public class EncryptionFailedException
extends RuntimeException
Thrown when encrypt failed.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionEncryptionFailedException(String message, Throwable cause) Constructs a new EncryptionFailedException for a specific 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
-
EncryptionFailedException
Constructs a new EncryptionFailedException for a specific message and cause.- Parameters:
message- the detail messagecause- the cause
-