13447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein/*
23447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein [The "BSD license"]
33447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein Copyright (c) 2005-2009 Terence Parr
43447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein All rights reserved.
53447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein
63447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein Redistribution and use in source and binary forms, with or without
73447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein modification, are permitted provided that the following conditions
83447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein are met:
93447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein 1. Redistributions of source code must retain the above copyright
103447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein     notice, this list of conditions and the following disclaimer.
113447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein 2. Redistributions in binary form must reproduce the above copyright
123447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein     notice, this list of conditions and the following disclaimer in the
133447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein     documentation and/or other materials provided with the distribution.
143447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein 3. The name of the author may not be used to endorse or promote products
153447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein     derived from this software without specific prior written permission.
163447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein
173447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
183447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
193447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
203447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
213447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
223447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
233447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
243447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
253447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
263447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
273447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein */
283447a5916aa62f44de24cc441fc9987116ddff52Andrew Sappersteinpackage org.antlr.runtime;
293447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein
303447a5916aa62f44de24cc441fc9987116ddff52Andrew Sappersteinpublic class NoViableAltException extends RecognitionException {
313447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	public String grammarDecisionDescription;
323447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	public int decisionNumber;
333447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	public int stateNumber;
343447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein
353447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	/** Used for remote debugger deserialization */
363447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	public NoViableAltException() {;}
373447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein
383447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	public NoViableAltException(String grammarDecisionDescription,
393447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein								int decisionNumber,
403447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein								int stateNumber,
413447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein								IntStream input)
423447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	{
433447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		super(input);
443447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		this.grammarDecisionDescription = grammarDecisionDescription;
453447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		this.decisionNumber = decisionNumber;
463447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		this.stateNumber = stateNumber;
473447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	}
483447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein
493447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	public String toString() {
503447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		if ( input instanceof CharStream ) {
513447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein			return "NoViableAltException('"+(char)getUnexpectedType()+"'@["+grammarDecisionDescription+"])";
523447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		}
533447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		else {
543447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein			return "NoViableAltException("+getUnexpectedType()+"@["+grammarDecisionDescription+"])";
553447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		}
563447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	}
573447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein}
58