Class PDFException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.adobe.internal.pdftoolkit.core.exceptions.PDFException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
PDFConfigurationException
,PDFFontException
,PDFInvalidDocumentException
,PDFInvalidParameterException
,PDFInvalidXMLException
,PDFIOException
,PDFParseException
,PDFSecurityException
,PDFSignatureException
,PDFUnableToCompleteOperationException
public class PDFException extends java.lang.Exception
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PDFException(java.lang.String message)
Create a new PDFException.PDFException(java.lang.String message, java.lang.Throwable cause)
Create a new PDFException wrapping an existing exception.PDFException(java.lang.Throwable cause)
Create a new PDFException wrapping an existing exception.
-
-
-
Constructor Detail
-
PDFException
public PDFException(java.lang.String message)
Create a new PDFException.- Parameters:
message
- the detail message.
-
PDFException
public PDFException(java.lang.String message, java.lang.Throwable cause)
Create a new PDFException wrapping an existing exception.- Parameters:
message
- the detail message.cause
- the cause.
-
PDFException
public PDFException(java.lang.Throwable cause)
Create a new PDFException wrapping an existing exception.- Parameters:
cause
- the cause.
-
-