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

com.dahuatech.hutool.core.io.IORuntimeException Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.hutool.core.io;

import com.dahuatech.hutool.core.exceptions.ExceptionUtil;
import com.dahuatech.hutool.core.util.StrUtil;

/**
 * IO运行时异常,常用于对IOException的包装
 *
 * @author xiaoleilu
 */
public class IORuntimeException extends RuntimeException {
  private static final long serialVersionUID = 8247610319171014183L;

  public IORuntimeException(Throwable e) {
    super(ExceptionUtil.getMessage(e), e);
  }

  public IORuntimeException(String message) {
    super(message);
  }

  public IORuntimeException(String messageTemplate, Object... params) {
    super(StrUtil.format(messageTemplate, params));
  }

  public IORuntimeException(String message, Throwable throwable) {
    super(message, throwable);
  }

  public IORuntimeException(Throwable throwable, String messageTemplate, Object... params) {
    super(StrUtil.format(messageTemplate, params), throwable);
  }

  /**
   * 导致这个异常的异常是否是指定类型的异常
   *
   * @param clazz 异常类
   * @return 是否为指定类型异常
   */
  public boolean causeInstanceOf(Class clazz) {
    Throwable cause = this.getCause();
    if (null != cause && clazz.isInstance(cause)) {
      return true;
    }
    return false;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy