Class PDFSecurityConfigurationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.adobe.internal.pdftoolkit.core.exceptions.PDFException
com.adobe.internal.pdftoolkit.core.exceptions.PDFSecurityException
com.adobe.internal.pdftoolkit.core.exceptions.PDFSecurityConfigurationException
- All Implemented Interfaces:
Serializable
This exception indicates that a problem has occured with the configuration of
the security system during the request.
While the Adobe PDF Java Toolkit may only declare that they throw a PDFSecurityException
in their method declaration that exception may be one of the descendant exceptions
such as this one. If a client wishes to know more about the reason for failure they
can add
catch
clauses for specific subclass exceptions such as this one.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPDFSecurityConfigurationException
(String message) Create a new PDFSecurityAuthorizationException.PDFSecurityConfigurationException
(String message, Throwable cause) Create a new PDFSecurityConfigurationException wrapping an existing exception.Create a new PDFSecurityConfigurationException 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
-
PDFSecurityConfigurationException
Create a new PDFSecurityAuthorizationException.- Parameters:
message
- the detail message.
-
PDFSecurityConfigurationException
Create a new PDFSecurityConfigurationException wrapping an existing exception.- Parameters:
message
- the detail message.cause
- the cause.
-
PDFSecurityConfigurationException
Create a new PDFSecurityConfigurationException wrapping an existing exception.- Parameters:
cause
- the cause.
-