Class 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.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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.