cz.jmare.mexpr.exception.run.EvaluateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mexpr-api Show documentation
Show all versions of mexpr-api Show documentation
API with very basic interfaces or annotations
The newest version!
package cz.jmare.mexpr.exception.run;
/**
* Exceptions which can occure during evaluation, like invalid operand values
*/
public class EvaluateException extends RuntimeException {
private static final long serialVersionUID = 938915458399969650L;
public EvaluateException(String message) {
super(message);
}
}