com.hlag.rulemaker.exception.RuleMakerEvaluationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-logic-rule-maker Show documentation
Show all versions of json-logic-rule-maker Show documentation
Helper library that contains custom expressions and operators for JsonLogic
package com.hlag.rulemaker.exception;
public class RuleMakerEvaluationException extends RuleMakerException {
public RuleMakerEvaluationException(String msg) {
super(msg);
}
public RuleMakerEvaluationException(Throwable cause) {
super(cause);
}
public RuleMakerEvaluationException(String msg, Throwable cause) {
super(msg, cause);
}
}