snapshot; known bug: finalizers and weak references don't work correctly wrt tenured objects

This commit is contained in:
Joel Dice
2007-07-07 19:06:32 -06:00
parent f71c77298c
commit a77693fb29
8 changed files with 106 additions and 42 deletions

View File

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