Package org.apache.pdfbox.exceptions
Class WrappedIOException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.apache.pdfbox.exceptions.WrappedIOException
-
- All Implemented Interfaces:
java.io.Serializable
public class WrappedIOException extends java.io.IOException
An simple class that allows a sub exception to be stored.- Version:
- $Revision: 1.4 $
- Author:
- Ben Litchfield
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WrappedIOException(java.lang.String message, java.lang.Throwable e)
Constructor.WrappedIOException(java.lang.Throwable e)
Constructor.
-
-
-
Constructor Detail
-
WrappedIOException
public WrappedIOException(java.lang.Throwable e)
Constructor.- Parameters:
e
- The root exception that caused this exception.
-
WrappedIOException
public WrappedIOException(java.lang.String message, java.lang.Throwable e)
Constructor.- Parameters:
message
- Descriptive text for the exception.e
- The root exception that caused this exception.
-
-