java.io
public class: IOError [javadoc |
source]
java.lang.Object
java.lang.Throwable
java.lang.Error
java.io.IOError
All Implemented Interfaces:
Serializable
Thrown when a serious I/O error has occurred.
- author:
Xueming - Shen
- since:
1.6 -
| Constructor: |
public IOError(Throwable cause) {
super(cause);
}
Constructs a new instance of IOError with the specified cause. The
IOError is created with the detail message of
(cause==null ? null : cause.toString()) (which typically
contains the class and detail message of cause). Parameters:
cause -
The cause of this error, or null if the cause
is not known
|
| Methods from java.lang.Throwable: |
|---|
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getStackTraceDepth, getStackTraceElement, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |