java.io.InterruptedIOException
This IO exception is thrown when a program reading or writing to a stream is
interrupted. This is also thrown when a socket timeout occurs before the
request has completed.
Known Direct Subclasses
Known Indirect Subclasses
Summary
Fields
public |
|
|
int |
bytesTransferred |
The number of bytes transferred before the IO interrupt occurred. |
Public Constructors
fillInStackTrace,
getCause,
getLocalizedMessage,
getMessage,
getStackTrace,
initCause,
printStackTrace,
printStackTrace,
printStackTrace,
setStackTrace,
toString
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
Details
Fields
public
int
bytesTransferred
The number of bytes transferred before the IO interrupt occurred. The
default is 0 but the value may be filled in by the caller of the
constructor.
Public Constructors
public
InterruptedIOException()
Constructs a new instance of this class with its walkback filled in.
public
InterruptedIOException(String detailMessage)
Constructs a new instance of this class with its walkback and message
filled in.
Parameters
detailMessage
| The detail message for the exception.
|