Print the Stack Trace of the Exception to a String
Posted by Qasim Khan on May 25, 2010
When an exception occurs, this code snippet will print the stack trace of the exception to a string. This way, the exception stack trace at runtime can be recorded in log file.
public static String getStackTrace(Throwable t)
{
StringWriter sw = new StringWriter();
PrintWriter pw...
Filed in: Java
0