is new.
java.lang.Objectjava.lang.Throwable
java.lang.Error
java.io.IOError
public class IOError
Thrown when a serious I/O error has occurred.
| Constructor Summary | |
|---|---|
|
IOError
(
Throwable
Constructs a new instance of
IOError
|
|
| 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 |
|---|
public IOError(Throwable cause)
IOError
The IOError
If the cause
is
created with the detail message of
not
(cause==null ? null : cause.toString())
null
(which typically contains the class and detail message of cause).
then the detail string of the new error will be that of the given cause.