more bugfixes

This commit is contained in:
Joel Dice
2007-08-14 07:27:10 -06:00
parent 587dbeb163
commit 71c7013808
6 changed files with 27 additions and 10 deletions

View File

@ -35,6 +35,10 @@ public class Throwable {
return message;
}
public String toString() {
return getClass().getName() + ": " + message;
}
private static native Object trace(int skipCount);
private static native StackTraceElement[] resolveTrace(Object trace);