java.io
Class InterruptedIOException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.io.IOException
|
+--java.io.InterruptedIOException
This exception is thrown when a in process I/O operation is interrupted
for some reason. The field bytesTransferred will contain the number of
bytes that were read/written prior to the interruption.
Authors:- Aaron M. Renn <arenn@urbanophile.com>
- Tom Tromey <tromey@cygnus.com>
See Also:
bytesTransferred
public int bytesTransferred
The number of bytes read/written prior to the interruption.
InterruptedIOException
public InterruptedIOException()
Create an extends without a descriptive error message.
InterruptedIOException
public InterruptedIOException(java.lang.String message)
Create an exception with a descriptive error message.
Parameters: