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

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

The newest version!
package cz.jmare.mexpr.exception.run;

/**
 * Exception for example when an invalid value passed into a function, input value
 * out of range or unparsable argument when a string passed
 */
public class InvalidValueException extends EvaluateException {
    private static final long serialVersionUID = -5117865467528660594L;

    public InvalidValueException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy