java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
java.io.InterruptedIOException
- 所有已实现的接口:
-
Serializable
- 直接已知子类:
-
SocketTimeoutException
表示I/O操作已被中断。抛出
InterruptedIOException
表示输入或输出传输已被终止,因为执行它的线程被中断。字段 bytesTransferred
指示在中断发生之前成功传输了多少字节。
- 自版本:
- 1.0
- 参见:
-
Field Summary
-
Constructor Summary
ConstructorDescription使用null
作为其错误详细信息构造一个InterruptedIOException
。使用指定的详细信息构造一个InterruptedIOException
。 -
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
bytesTransferred
public int bytesTransferred报告在I/O操作被中断之前已传输了多少字节。
-
-
Constructor Details
-
InterruptedIOException
public InterruptedIOException()使用null
作为其错误详细信息构造一个InterruptedIOException
。 -
InterruptedIOException
使用指定的详细信息构造一个InterruptedIOException
。字符串s
可以稍后通过Throwable.getMessage()
方法从java.lang.Throwable
类中检索。- 参数:
-
s
- 详细消息。
-