cn.luues.tool.setting.SettingRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tool-setting Show documentation
Show all versions of tool-setting Show documentation
tool 读取文本、properties、yml封装
package cn.luues.tool.setting;
import cn.luues.tool.core.util.StrUtil;
/**
* 设置异常
* @author Mr-Wu
*/
public class SettingRuntimeException extends RuntimeException{
private static final long serialVersionUID = 7941096116780378387L;
public SettingRuntimeException(Throwable e) {
super(e);
}
public SettingRuntimeException(String message) {
super(message);
}
public SettingRuntimeException(String messageTemplate, Object... params) {
super(StrUtil.format(messageTemplate, params));
}
public SettingRuntimeException(String message, Throwable throwable) {
super(message, throwable);
}
public SettingRuntimeException(Throwable throwable, String messageTemplate, Object... params) {
super(StrUtil.format(messageTemplate, params), throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy