java.io
Class IOError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by java.io.IOError
All Implemented Interfaces:
Serializable

public class IOError
extends Error

Thrown when a serious I/O error has occurred.

Since:
1.6
See Also:
Serialized Form

Constructor Summary
IOError(Throwable cause)
          Constructs a new instance of this error, with the specified cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, 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

IOError

public IOError(Throwable cause)
Constructs a new instance of this error, with the specified cause.

If the cause is not null then the detail string of the new error will be that of the given cause.

Parameters:
cause - The cause of this error, or null if the cause is not known