Class PDFException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.adobe.internal.pdftoolkit.core.exceptions.PDFException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
PDFConfigurationException
,PDFFontException
,PDFInvalidDocumentException
,PDFInvalidParameterException
,PDFInvalidXMLException
,PDFIOException
,PDFParseException
,PDFSecurityException
,PDFSignatureException
,PDFUnableToCompleteOperationException
This is the parent class of all checked exceptions that are thrown from an API in
the Adobe PDF Java Toolkit. This exception itself is never thrown but may be used for catches
by those clients who don't wish to treat the various exceptions differently.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPDFException
(String message) Create a new PDFException.PDFException
(String message, Throwable cause) Create a new PDFException wrapping an existing exception.PDFException
(Throwable cause) Create a new PDFException 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
-
PDFException
Create a new PDFException.- Parameters:
message
- the detail message.
-
PDFException
Create a new PDFException wrapping an existing exception.- Parameters:
message
- the detail message.cause
- the cause.
-
PDFException
Create a new PDFException wrapping an existing exception.- Parameters:
cause
- the cause.
-