com.udojava.evalex.TokenizerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of EvalEx Show documentation
Show all versions of EvalEx Show documentation
EvalEx is a handy expression evaluator for Java, that allows to evaluate simple
mathematical and boolean expressions.
The newest version!
package com.udojava.evalex;
public class TokenizerException extends Expression.ExpressionException {
public TokenizerException(String message, int characterPosition) {
super(message, characterPosition);
}
}