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 Sapperstein/** An extra token while parsing a TokenStream */
313447a5916aa62f44de24cc441fc9987116ddff52Andrew Sappersteinpublic class UnwantedTokenException extends MismatchedTokenException {
323447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	/** Used for remote debugger deserialization */
333447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	public UnwantedTokenException() {;}
343447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein
353447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	public UnwantedTokenException(int expecting, IntStream input) {
363447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		super(expecting, input);
373447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	}
383447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein
393447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	public Token getUnexpectedToken() {
403447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		return token;
413447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	}
423447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein
433447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	public String toString() {
443447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		String exp = ", expected "+expecting;
453447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		if ( expecting==Token.INVALID_TOKEN_TYPE ) {
463447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein			exp = "";
473447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		}
483447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		if ( token==null ) {
493447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein			return "UnwantedTokenException(found="+null+exp+")";
503447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		}
513447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein		return "UnwantedTokenException(found="+token.getText()+exp+")";
523447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein	}
533447a5916aa62f44de24cc441fc9987116ddff52Andrew Sapperstein}
54