All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hlag.rulemaker.exception.RuleMakerParseExpressionException Maven / Gradle / Ivy

There is a newer version: 1.5.17
Show newest version
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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy