clean up bootstrap type generation to eliminate redundancy (broken)

This commit is contained in:
Joel Dice
2007-11-04 14:15:28 -07:00
parent bea4a73f54
commit 94e9bd0fd2
20 changed files with 755 additions and 571 deletions

View File

@ -0,0 +1,11 @@
package java.lang;
public class StackOverflowError extends Error {
public StackOverflowError(String message) {
super(message, null);
}
public StackOverflowError() {
this(null);
}
}