java.io
Class InterruptedIOException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.io.IOException
|
+--java.io.InterruptedIOException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- SocketTimeoutException
- public class InterruptedIOException
- extends IOException
Untamed: Signals that an I/O operation has been interrupted. An
InterruptedIOException
is thrown to indicate that an
input or output transfer has been terminated because the thread
performing it was interrupted. The field bytesTransferred
indicates how many bytes were successfully transferred before
the interruption occurred.
- Since:
- JDK1.0
- Version:
- 1.17, 12/03/01
- Author:
- unascribed
- See Also:
java.io.InputStream
,
java.io.OutputStream
,
java.lang.Thread#interrupt()
,
Serialized Form
Field Summary |
int |
bytesTransferred
Enabled: Reports how many bytes had been transferred as part of the I/O
operation before it was interrupted. |
Fields inherited from class java.lang.Exception |
|
Fields inherited from class java.lang.Throwable |
|
Methods inherited from class java.lang.Throwable |
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap |
bytesTransferred
public int bytesTransferred
- Enabled: Reports how many bytes had been transferred as part of the I/O
operation before it was interrupted.
InterruptedIOException
public InterruptedIOException()
- Enabled: Constructs an
InterruptedIOException
with
null
as its error detail message.
InterruptedIOException
public InterruptedIOException(String s)
- Enabled: Constructs an
InterruptedIOException
with the
specified detail message. The string s
can be
retrieved later by the
java.lang.Throwable#getMessage
method of class java.lang.Throwable
.
- Parameters:
s
- the detail message.
comments?