org.brioscia.javaz.expression.SyntaxError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of h2j Show documentation
Show all versions of h2j Show documentation
very tiny front-end framework
package org.brioscia.javaz.expression;
public class SyntaxError extends Exception {
private static final long serialVersionUID = 1L;
public SyntaxError(NodeToken token, String message) {
super(token == null ? message : token.getValue() + " at " + token.getPos() + " - " + message);
}
}