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

cz.jmare.mexpr.exception.run.EvaluateException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy