ExceptionUtil.java 892 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.ozs.common.utils;
  2. import java.io.PrintWriter;
  3. import java.io.StringWriter;
  4. import org.apache.commons.lang3.exception.ExceptionUtils;
  5. /**
  6. * 错误信息处理类。
  7. *
  8. * @author hx
  9. */
  10. public class ExceptionUtil
  11. {
  12. /**
  13. * 获取exception的详细错误信息。
  14. */
  15. public static String getExceptionMessage(Throwable e)
  16. {
  17. StringWriter sw = new StringWriter();
  18. e.printStackTrace(new PrintWriter(sw, true));
  19. return sw.toString();
  20. }
  21. public static String getRootErrorMessage(Exception e)
  22. {
  23. Throwable root = ExceptionUtils.getRootCause(e);
  24. root = (root == null ? e : root);
  25. if (root == null)
  26. {
  27. return "";
  28. }
  29. String msg = root.getMessage();
  30. if (msg == null)
  31. {
  32. return "null";
  33. }
  34. return StringUtils.defaultString(msg);
  35. }
  36. }