7 小时以前 9bad721754fe8bbe2e5f459d0706e0fefac569f3
1
2
3
4
5
6
7
8
9
10
11
12
package cn.iocoder.yudao.module.qcreport.engine.rule;
 
/**
 * 规则运行期错误:函数不在白名单、参数类型不对、除以 0 等。
 */
public class RuleRuntimeException extends RuntimeException {
 
    public RuleRuntimeException(String message) {
        super(message);
    }
 
}