Removed the two argument constructor, as it was not used as is a

problem for GCJ compiles at this time.
This commit is contained in:
Robert Greene 2003-02-05 03:49:15 +00:00
parent 55d60a93bb
commit 2e7e67eb54
1 changed files with 0 additions and 6 deletions

View File

@ -33,10 +33,4 @@ public class DiskFullException extends Exception {
public DiskFullException(String description) {
super(description);
}
/**
* Constructor for DiskFullException.
*/
public DiskFullException(String description, Throwable exception) {
super(description, exception);
}
}