Class PDFSignatureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.adobe.internal.pdftoolkit.core.exceptions.PDFException
com.adobe.internal.pdftoolkit.core.exceptions.PDFSignatureException
- All Implemented Interfaces:
Serializable
This exception indicates that some general security issue has occured during the
processing of the request. This actual cause may be one of the descendant exceptions
to this one. There are a limited number of these defined within the
Adobe PDF Java Toolkit for the most common cases. However, a client that is providing its
own implementation of the
SecurityHandler
interface may wish to subclass one of these to provide more specific information.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPDFSignatureException
(String message) Create a new PDFSecurityException.PDFSignatureException
(String message, Throwable cause) Create a new PDFSecurityException wrapping an existing exception.PDFSignatureException
(Throwable cause) Create a new PDFSecurityException wrapping an existing exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PDFSignatureException
Create a new PDFSecurityException.- Parameters:
message
- the detail message.
-
PDFSignatureException
Create a new PDFSecurityException wrapping an existing exception.- Parameters:
message
- the detail message.cause
- the cause.
-
PDFSignatureException
Create a new PDFSecurityException wrapping an existing exception.- Parameters:
cause
- the cause.
-