Here you can find the source of stackTraceFromThrowable(Throwable throwable)
public static String stackTraceFromThrowable(Throwable throwable)
//package com.java2s; //License from project: Open Source License import java.io.*; public class Main { public static String stackTraceFromThrowable(Throwable throwable) { StringWriter stringWriter = new StringWriter(); throwable.printStackTrace(new PrintWriter(stringWriter)); return stringWriter.toString(); }/* w w w . j a v a 2 s. c om*/ }