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.
// www. j ava 2 s . co m
public class Main {
public static void main(String[] argv) {
Throwable t = new Exception("from java2s.com");
t.printStackTrace(System.out);
}
}