quick sketch of java/io/*

This commit is contained in:
Joel Dice
2007-07-24 18:34:45 -06:00
parent f56fda9af6
commit 97aaa419b4
15 changed files with 327 additions and 26 deletions

View File

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