FileDocCategorySizeDatePackage
InterruptedIOException.javaAPI DocAndroid 1.5 API1903Wed May 06 22:41:04 BST 2009java.io

InterruptedIOException

public class InterruptedIOException extends IOException
Signals that a blocking I/O operation has been interrupted. The number of bytes that were transferred successfully before the interruption took place is stored in a field of the exception.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
public int
bytesTransferred
The number of bytes transferred before the I/O interrupt occurred.
Constructors Summary
public InterruptedIOException()
Constructs a new {@code InterruptedIOException} with its stack trace filled in.

since
Android 1.0


                        
      
        super();
    
public InterruptedIOException(String detailMessage)
Constructs a new {@code InterruptedIOException} with its stack trace and detail message filled in.

param
detailMessage the detail message for this exception.
since
Android 1.0

        super(detailMessage);
    
Methods Summary