Package org.terrier.utility.io
Class WrappedIOException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.terrier.utility.io.WrappedIOException
-
- All Implemented Interfaces:
java.io.Serializable
public class WrappedIOException extends java.io.IOException
A class for IOException. Use this when you have an error, but are being forced by an existing API to return an IOException.- Since:
- 2.2
- Author:
- Craig Macdonald
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WrappedIOException(java.lang.String message)
Make a WrappedIOException with the specified messageWrappedIOException(java.lang.String message, java.lang.Throwable e)
Make a WrappedIOException with the specified message and causeWrappedIOException(java.lang.Throwable e)
Make a WrappedIOException with the specified cause
-
-
-
Constructor Detail
-
WrappedIOException
public WrappedIOException(java.lang.String message)
Make a WrappedIOException with the specified message
-
WrappedIOException
public WrappedIOException(java.lang.Throwable e)
Make a WrappedIOException with the specified cause
-
WrappedIOException
public WrappedIOException(java.lang.String message, java.lang.Throwable e)
Make a WrappedIOException with the specified message and cause
-
-