Class PDFIOException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.adobe.internal.pdftoolkit.core.exceptions.PDFException
-
- com.adobe.internal.pdftoolkit.core.exceptions.PDFIOException
-
- All Implemented Interfaces:
java.io.Serializable
public class PDFIOException extends PDFException
An I/O error has occurred during the reading or writing of the PDF file or in the reading or writing of temporary caches of PDF data.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PDFIOException(java.lang.String message)
Create a new PDFIOException.PDFIOException(java.lang.String message, java.lang.Throwable cause)
Create a new PDFIOException wrapping an existing exception.PDFIOException(java.lang.Throwable cause)
Create a new PDFIOException wrapping an existing exception.
-
-
-
Constructor Detail
-
PDFIOException
public PDFIOException(java.lang.String message)
Create a new PDFIOException.- Parameters:
message
- the detail message.
-
PDFIOException
public PDFIOException(java.lang.String message, java.lang.Throwable cause)
Create a new PDFIOException wrapping an existing exception.- Parameters:
message
- the detail message.cause
- the cause.
-
PDFIOException
public PDFIOException(java.lang.Throwable cause)
Create a new PDFIOException wrapping an existing exception.- Parameters:
cause
- the cause.
-
-