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:
java.io.Serializable
public class PDFParseException extends PDFException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PDFParseException(java.lang.String message)
Create a new PDFParseException.PDFParseException(java.lang.String message, java.lang.Throwable cause)
Create a new PDFParseException wrapping an existing exception.PDFParseException(java.lang.Throwable cause)
Create a new PDFParseException wrapping an existing exception.
-
-
-
Constructor Detail
-
PDFParseException
public PDFParseException(java.lang.String message)
Create a new PDFParseException.- Parameters:
message
- the detail message.
-
PDFParseException
public PDFParseException(java.lang.String message, java.lang.Throwable cause)
Create a new PDFParseException wrapping an existing exception.- Parameters:
message
- the detail message.cause
- the cause.
-
PDFParseException
public PDFParseException(java.lang.Throwable cause)
Create a new PDFParseException wrapping an existing exception.- Parameters:
cause
- the cause.
-
-