InterruptedIOExceptionpublic class InterruptedIOException extends IOException Signals that a blocking I/O operation has been interrupted. The number of
bytes that were transferred successfully before the interruption took place
is stored in a field of the exception. |
Fields Summary |
---|
private static final long | serialVersionUID | public int | bytesTransferredThe number of bytes transferred before the I/O interrupt occurred. |
Constructors Summary |
---|
public InterruptedIOException()Constructs a new {@code InterruptedIOException} with its stack trace
filled in.
super();
| public InterruptedIOException(String detailMessage)Constructs a new {@code InterruptedIOException} with its stack trace and
detail message filled in.
super(detailMessage);
|
|