Here you can find the source of getStackTrace(Throwable throwable)
public static String getStackTrace(Throwable throwable)
//package com.java2s; import java.io.*; public class Main { public static String getStackTrace(Throwable throwable) { StringWriter stringWriter = new StringWriter(); throwable.printStackTrace(new PrintWriter(stringWriter)); return stringWriter.toString(); }//from w ww. j av a 2s .c o m }