FileDocCategorySizeDatePackage
ClosedByInterruptException.javaAPI DocAndroid 1.5 API1517Wed May 06 22:41:04 BST 2009java.nio.channels

ClosedByInterruptException

public class ClosedByInterruptException extends AsynchronousCloseException
A {@code ClosedByInterruptException} is thrown when a thread is interrupted in a blocking I/O operation.

When the thread is interrupted by a call to {@code interrupt()}, it closes the channel, sets the interrupt status of the thread to {@code true} and throws a {@code ClosedByInterruptException}.

since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public ClosedByInterruptException()
Constructs a {@code ClosedByInterruptException}.

since
Android 1.0


                 
      
        super();
    
Methods Summary