Throwable.printStackTrace() has the following syntax.
public void printStackTrace()
In the following code shows how to use Throwable.printStackTrace() method.
//from w w w.j a v a 2 s .c o m public class Main { public static void main(String[] argv) { Throwable t = new Exception("from java2s.com"); t.printStackTrace(); } }
The code above generates the following result.