Package java.io Previous
Previous
Java API
Java API
Index
Index
Next
Next

Class InterruptedIOException

Fields , Constructors

public  class  java.io.InterruptedIOException
    extends  java.io.IOException  
{
        // Fields
    public int bytesTransferred;	

        // Constructors
    public InterruptedIOException();	
    public InterruptedIOException(String  s);	
}

Signals that an I/O operation has been interrupted.
See Also: InputStream OutputStream
Interrupt in class Thread .


Fields


bytesTransferred

public int bytesTransferred 

Reports how many bytes had been transferred as part of the IO operation before it was interrupted.


Constructors


InterruptedIOException

public InterruptedIOException() 

Constructs an InterruptedIOException with no detail message.


InterruptedIOException

public InterruptedIOException(String  s) 

Constructs an InterruptedIOException with the specified detail message.

ParameterDescription
s the detail message



Top© 1996 Sun Microsystems, Inc. All rights reserved.