Class PDFInvalidDocumentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.adobe.internal.pdftoolkit.core.exceptions.PDFException
-
- com.adobe.internal.pdftoolkit.core.exceptions.PDFInvalidDocumentException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
PDFCosParseException
,PDFInvalidContentException
,PDFInvalidStructureException
public class PDFInvalidDocumentException extends PDFException
Indicates a general problem with the PDFDocument that was being operated on. At this point the PDFDocument may be in an unknown state.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PDFInvalidDocumentException(java.lang.String message)
Create a new PDFInvalidDocumentException.PDFInvalidDocumentException(java.lang.String message, java.lang.Throwable cause)
Create a new PDFInvalidDocumentException wrapping an existing exception.PDFInvalidDocumentException(java.lang.Throwable cause)
Create a new PDFInvalidDocumentException wrapping an existing exception.
-
-
-
Constructor Detail
-
PDFInvalidDocumentException
public PDFInvalidDocumentException(java.lang.String message)
Create a new PDFInvalidDocumentException.- Parameters:
message
- the detail message.
-
PDFInvalidDocumentException
public PDFInvalidDocumentException(java.lang.String message, java.lang.Throwable cause)
Create a new PDFInvalidDocumentException wrapping an existing exception.- Parameters:
message
- the detail message.cause
- the cause.
-
PDFInvalidDocumentException
public PDFInvalidDocumentException(java.lang.Throwable cause)
Create a new PDFInvalidDocumentException wrapping an existing exception.- Parameters:
cause
- the cause.
-
-