ExceptionUtils.java
339 Bytes
package com.bootdo.common.utils;
public class ExceptionUtils {
public static String getExceptionAllinformation(Exception ex) {
String sOut = "";
StackTraceElement[] trace = ex.getStackTrace();
for (StackTraceElement s : trace) {
sOut += "\tat " + s + "\r\n";
}
return sOut;
}
}