/* This file was generated by SableCC (http://www.sablecc.org/). */ package org.openflexo.antar.expr.parser.parser; import org.openflexo.antar.expr.parser.node.Token; @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; } }