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

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