com.hlag.rulemaker.exception.RuleMakerParseExpressionException 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 RuleMakerParseExpressionException extends RuleMakerException {
public RuleMakerParseExpressionException(String msg) {
super(msg);
}
public RuleMakerParseExpressionException(Throwable cause) {
super(cause);
}
public RuleMakerParseExpressionException(String msg, Throwable cause) {
super(msg, cause);
}
}