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

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