Java Throwable.getStackTrace()
Syntax
Throwable.getStackTrace() has the following syntax.
public StackTraceElement [] getStackTrace()
Example
In the following code shows how to use Throwable.getStackTrace() method.
public class Main {
public static void main(String[] argv) {
Throwable t = new Exception("from java2s.com");
/* w w w .j ava 2 s .c om*/
System.out.println(t.getStackTrace());
}
}