com.dahuatech.hutool.core.io.IORuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Dahua ICC Open API SDK for Java
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 extends Throwable> clazz) {
Throwable cause = this.getCause();
if (null != cause && clazz.isInstance(cause)) {
return true;
}
return false;
}
}