欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ExceptionTool异常处理工具类  

程序员文章站 2022-05-24 08:22:29
...
public class ExceptionTool {
	public static String getStackTrace(Throwable aThrowable) {
		Writer result = new StringWriter();
	    PrintWriter printWriter = new PrintWriter(result);
	    aThrowable.printStackTrace(printWriter);
	    return result.toString();
	}
}