Java Data Type Tutorial - Java Throwable .printStackTrace (PrintStream s)








Syntax

Throwable.printStackTrace(PrintStream s) has the following syntax.

public void printStackTrace(PrintStream s)

Example

In the following code shows how to use Throwable.printStackTrace(PrintStream s) method.

/*from   w ww  . ja  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(System.out);


  }

}

The code above generates the following result.