本文整理汇总了Java中org.apache.commons.lang.exception.ExceptionUtils.getFullStackTrace方法的典型用法代码示例。如果您正苦于以下问题:Java ExceptionUtils.getFullStackTrace方法的具体用法?Java ExceptionUtils.getFullStackTrace怎么用?Java ExceptionUtils.getFullStackTrace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.commons.lang.exception.ExceptionUtils
的用法示例。
在下文中一共展示了ExceptionUtils.getFullStackTrace方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: toString
import org.apache.commons.lang.exception.ExceptionUtils; //导入方法依赖的package包/类
@Override
public String toString() {
Throwable rootException = this.getCause() instanceof SQLException
? ((SQLException) this.getCause()).getNextException()
: this.getRootCause();
if (rootException == null) {
return ExceptionUtils.getFullStackTrace(this.getCause());
} else {
return ExceptionUtils.getFullStackTrace(this.getCause())
+ "\nWith Root Cause: " + ExceptionUtils.getFullStackTrace(rootException);
}
}
示例2: obtenerDescripcionErrores
import org.apache.commons.lang.exception.ExceptionUtils; //导入方法依赖的package包/类
public String obtenerDescripcionErrores() {
String res = "";
int i = 1;
for (Iterator it = errores.iterator(); it.hasNext();) {
Exception ex = (Exception) it.next();
res += "ERROR " + i + ":\n" ;
res += "------------------\n" ;
res += ExceptionUtils.getFullStackTrace(ex);
res += "\n\n\n";
i++;
}
return res;
}
示例3: getStack
import org.apache.commons.lang.exception.ExceptionUtils; //导入方法依赖的package包/类
public static String getStack(Throwable e) {
if (e == null) {
return "";
}
Throwable cause = ExceptionUtils.getRootCause(e);
return ExceptionUtils.getFullStackTrace(cause);
}
示例4: getErrorMsg
import org.apache.commons.lang.exception.ExceptionUtils; //导入方法依赖的package包/类
private String getErrorMsg(Exception e) {
return ExceptionUtils.getFullStackTrace(e);
}
示例5: getWire
import org.apache.commons.lang.exception.ExceptionUtils; //导入方法依赖的package包/类
public static Wire getWire(Throwable e) {
return new Wire(ExceptionUtils.getFullStackTrace(e), "", "");
}
示例6: getWire
import org.apache.commons.lang.exception.ExceptionUtils; //导入方法依赖的package包/类
public static Wire getWire(Throwable e) {
return new Wire(ExceptionUtils.getFullStackTrace(e), "");
}
示例7: logError
import org.apache.commons.lang.exception.ExceptionUtils; //导入方法依赖的package包/类
public static void logError(Throwable t) {
final String ret = t.getMessage() + "\n" + ExceptionUtils.getFullStackTrace(t);
logError(ret);
}
示例8: getStacktrace
import org.apache.commons.lang.exception.ExceptionUtils; //导入方法依赖的package包/类
public String getStacktrace() {
return throwable != null ? ExceptionUtils.getFullStackTrace(throwable) : "";
}