com.whaleal.icefrog.extra.expression.ExpressionException Maven / Gradle / Ivy
The newest version!
package com.whaleal.icefrog.extra.expression;
import com.whaleal.icefrog.core.exceptions.ExceptionUtil;
import com.whaleal.icefrog.core.util.StrUtil;
/**
* 表达式语言异常
*
* @author Looly
* @author wh
*/
public class ExpressionException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ExpressionException(Throwable e) {
super(ExceptionUtil.getMessage(e), e);
}
public ExpressionException(String message) {
super(message);
}
public ExpressionException(String messageTemplate, Object... params) {
super(StrUtil.format(messageTemplate, params));
}
public ExpressionException(String message, Throwable throwable) {
super(message, throwable);
}
public ExpressionException(String message, Throwable throwable, boolean enableSuppression, boolean writableStackTrace) {
super(message, throwable, enableSuppression, writableStackTrace);
}
public ExpressionException(Throwable throwable, String messageTemplate, Object... params) {
super(StrUtil.format(messageTemplate, params), throwable);
}
}