Package com.pd4ml.pdf.encryption
Class CryptographyException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.pd4ml.pdf.encryption.CryptographyException
-
- All Implemented Interfaces:
java.io.Serializable
public class CryptographyException extends java.lang.Exception
An exception that indicates that something has gone wrong during a cryptography operation.- Version:
- $Revision: 1.4 $
- Author:
- Ben Litchfield
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CryptographyException(java.lang.Exception e)
Constructor.CryptographyException(java.lang.String msg)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Exception
getEmbedded()
This will get the exception that caused this exception.
-
-
-
Constructor Detail
-
CryptographyException
public CryptographyException(java.lang.String msg)
Constructor.- Parameters:
msg
- A msg to go with this exception.
-
CryptographyException
public CryptographyException(java.lang.Exception e)
Constructor.- Parameters:
e
- The root exception that caused this exception.
-
-