add java.lang.OutOfMemoryError

This commit is contained in:
Joel Dice 2008-01-29 08:18:23 -07:00
parent 12fe480f1c
commit 7a262d0578

View File

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