org.geolatte.common.cql.parser.ParserException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geolatte-common Show documentation
Show all versions of geolatte-common Show documentation
This GeoLatte-common library contains the transformer framework and other common classes used by other
GeoLatte modules.
/* This file was generated by SableCC (http://www.sablecc.org/). */
package org.geolatte.common.cql.parser;
import org.geolatte.common.cql.node.*;
@SuppressWarnings("serial")
public class ParserException extends Exception
{
Token token;
public ParserException(@SuppressWarnings("hiding") Token token, String message)
{
super(message);
this.token = token;
}
public Token getToken()
{
return this.token;
}
}