home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 January / PCO0198.ISO / 1&1 / java.z / java_301 / java / io / InterruptedIOException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-10-20  |  526 b   |  13 lines

  1. package java.io;
  2.  
  3. public class InterruptedIOException extends IOException {
  4.    public int bytesTransferred;
  5.  
  6.    public InterruptedIOException() {
  7.    }
  8.  
  9.    public InterruptedIOException(String s) {
  10.       super(s);
  11.    }
  12. }
  13.