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

org.brioscia.javaz.expression.SyntaxError Maven / Gradle / Ivy

There is a newer version: 1.3.7
Show newest version
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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy