Class PDFParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.adobe.internal.pdftoolkit.core.exceptions.PDFException
com.adobe.internal.pdftoolkit.core.exceptions.PDFParseException
- All Implemented Interfaces:
Serializable
This exception indicates a low level parsing exception. This should never be
exposed to client level API. Other methods should wrap it as appropriate.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPDFParseException
(String message) Create a new PDFParseException.PDFParseException
(String message, Throwable cause) Create a new PDFParseException wrapping an existing exception.PDFParseException
(Throwable cause) Create a new PDFParseException 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
-
PDFParseException
Create a new PDFParseException.- Parameters:
message
- the detail message.
-
PDFParseException
Create a new PDFParseException wrapping an existing exception.- Parameters:
message
- the detail message.cause
- the cause.
-
PDFParseException
Create a new PDFParseException wrapping an existing exception.- Parameters:
cause
- the cause.
-