sketch a few more classpath classes

This commit is contained in:
Joel Dice
2007-07-21 14:44:39 -06:00
parent 48226f988c
commit fd770fd884
17 changed files with 497 additions and 7 deletions

View File

@ -23,6 +23,10 @@ public class Throwable {
this(null, null);
}
public Throwable getCause() {
return cause;
}
private static native Object trace(int skipCount);
private static native StackTraceElement[] resolveTrace(Object trace);