Class java.io.InterruptedIOException
All Packages Class Hierarchy This Package Previous Next Index
Class java.io.InterruptedIOException
Object
|
+----Throwable
|
+----Exception
|
+----IOException
|
+----java.io.InterruptedIOException
- public class InterruptedIOException
- extends IOException
Signals that an I/O operation has been interrupted.
- Version:
- 1.8, 07/01/98
- Author:
- unascribed
- Since:
- JDK1.0
- See Also:
- InputStream, OutputStream, interrupt()
-
bytesTransferred
- Reports how many bytes had been transferred as part of the I/O
operation before it was interrupted.
-
java.io.InterruptedIOException()
- Constructs an
InterruptedIOException
with no detail
message.
-
java.io.InterruptedIOException(String)
- Constructs an
InterruptedIOException
with the
specified detail message.
bytesTransferred
public int bytesTransferred
- Reports how many bytes had been transferred as part of the I/O
operation before it was interrupted.
- Since:
JDK1.0
InterruptedIOException
public InterruptedIOException()
- Constructs an
InterruptedIOException
with no detail
message.
- Since:
- JDK1.0
InterruptedIOException
public InterruptedIOException(String s)
- Constructs an
InterruptedIOException
with the
specified detail message.
- Parameters:
- s - the detail message.
- Since:
- JDK1.0
All Packages Class Hierarchy This Package Previous Next Index