All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.user.utils.Exceptions Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.haoxuer.discover.user.utils;

import java.io.PrintWriter;
import java.io.StringWriter;

/**
 * 关于异常的工具类.
 *
 * @author calvin
 */
public class Exceptions {
  
  /**
   * 将CheckedException转换为UncheckedException.
   */
  public static RuntimeException unchecked(Exception e) {
    if (e instanceof RuntimeException) {
      return (RuntimeException) e;
    } else {
      return new RuntimeException(e);
    }
  }
  
  /**
   * 将ErrorStack转化为String.
   */
  public static String getStackTraceAsString(Exception e) {
    StringWriter stringWriter = new StringWriter();
    e.printStackTrace(new PrintWriter(stringWriter));
    return stringWriter.toString();
  }
  
  /**
   * 判断异常是否由某些底层的异常引起.
   */
  public static boolean isCausedBy(Exception ex, Class... causeExceptionClasses) {
    Throwable cause = ex;
    while (cause != null) {
      for (Class causeClass : causeExceptionClasses) {
        if (causeClass.isInstance(cause)) {
          return true;
        }
      }
      cause = cause.getCause();
    }
    return false;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy