classpath progress

This commit is contained in:
Joel Dice
2007-07-26 20:39:53 -06:00
parent 7212ba1c30
commit c9f9b039e6
23 changed files with 411 additions and 10 deletions

View File

@ -0,0 +1,11 @@
package java.io;
public class FileNotFoundException extends IOException {
public FileNotFoundException(String message) {
super(message);
}
public FileNotFoundException() {
this(null);
}
}