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()

Variable Index

 o bytesTransferred
Reports how many bytes had been transferred as part of the I/O operation before it was interrupted.

Constructor Index

 o java.io.InterruptedIOException()
Constructs an InterruptedIOException with no detail message.
 o java.io.InterruptedIOException(String)
Constructs an InterruptedIOException with the specified detail message.

Variables

 o 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

Constructors

 o InterruptedIOException
public InterruptedIOException()
Constructs an InterruptedIOException with no detail message.

Since:
JDK1.0
 o 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