Class EncryptionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opensaml.xmlsec.encryption.support.EncryptionException
- All Implemented Interfaces:
Serializable
public class EncryptionException extends Exception
Exception thrown when an error occurs during encryption operations.
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
Serial version UID. -
Constructor Summary
Constructors Constructor Description EncryptionException()
Constructor.EncryptionException(Exception wrappedException)
Constructor.EncryptionException(String message)
Constructor.EncryptionException(String message, Exception wrappedException)
Constructor. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial version UID.- See Also:
- Constant Field Values
-
-
Constructor Details
-
EncryptionException
public EncryptionException()Constructor. -
EncryptionException
Constructor.- Parameters:
message
- exception message
-
EncryptionException
Constructor.- Parameters:
wrappedException
- exception to be wrapped by this one
-
EncryptionException
Constructor.- Parameters:
message
- exception messagewrappedException
- exception to be wrapped by this one
-