Package java.io |
![]() Previous |
![]() Java API |
![]() Index |
![]() Next |
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 . |
public int bytesTransferredReports how many bytes had been transferred as part of the IO operation before it was interrupted.
public InterruptedIOException()Constructs an InterruptedIOException with no detail message.
public InterruptedIOException(String s)Constructs an InterruptedIOException with the specified detail message.
Parameter Description s the detail message