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

public class PDFException extends 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:
  • Constructor Details

    • PDFException

      public PDFException(String message)
      Create a new PDFException.
      Parameters:
      message - the detail message.
    • PDFException

      public PDFException(String message, Throwable cause)
      Create a new PDFException wrapping an existing exception.
      Parameters:
      message - the detail message.
      cause - the cause.
    • PDFException

      public PDFException(Throwable cause)
      Create a new PDFException wrapping an existing exception.
      Parameters:
      cause - the cause.