public class IOError
extends Error
| java.lang.Object | |||
| java.lang.Throwable | |||
| java.lang.Error | |||
| java.io.IOError | |||
当发生严重的I / O错误时抛出。
Public constructors |
|
|---|---|
IOError(Throwable cause) 用指定的原因构造一个IOError的新实例。 |
|
继承方法(Inherited methods) |
|
|---|---|
java.lang.Throwable
|
|
java.lang.Object
|
|
IOError (Throwable cause)
用指定的原因构造一个IOError的新实例。 IOError是使用详细消息(cause==null ? null : cause.toString()) (通常包含原因的类和详细消息)创建的。
| 参数(Parameters) | |
|---|---|
cause |
Throwable: The cause of this error, or null if the cause is not known |