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
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(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 Detail
-
PDFParseException
public PDFParseException(String message)
Create a new PDFParseException.- Parameters:
message
- the detail message.
-
PDFParseException
public PDFParseException(String message, Throwable cause)
Create a new PDFParseException wrapping an existing exception.- Parameters:
message
- the detail message.cause
- the cause.
-
PDFParseException
public PDFParseException(Throwable cause)
Create a new PDFParseException wrapping an existing exception.- Parameters:
cause
- the cause.
-
-