01: package java.io; 02: 03: public class InterruptedIOException extends IOException { 04: public int bytesTransferred; 05: 06: public InterruptedIOException() { 07: } 08: 09: public InterruptedIOException(String message) { 10: } 11: 12: InterruptedIOException(String message, int bytesTransferred) { 13: } 14: }