Java Throwable.printStackTrace()
Syntax
Throwable.printStackTrace() has the following syntax.
public void printStackTrace()
Example
In the following code shows how to use Throwable.printStackTrace() method.
//from w w w .j a va 2 s.co m
public class Main {
public static void main(String[] argv) {
Throwable t = new Exception("from java2s.com");
t.printStackTrace();
}
}