具体是什么方法?
这是定义在所有异常的超类Throwable里面的一个方法
[CODE]/**
* Fills in the execution stack trace. This method records within this
* <code>Throwable</code> object information about the current state of
* the stack frames for the current thread.
*
* @return a reference to this <code>Throwable</code> instance.
* @see java.lang.Throwable#printStackTrace()
*/
public synchronized native Throwable fillInStackTrace();[/CODE]
它声明native表示它是用本地方法实现的.源文件里面是看不到的