1 package antlr; 2 3 /* ANTLR Translator Generator 4 * Project led by Terence Parr at http://www.jGuru.com 5 * Software rights: http://www.antlr.org/RIGHTS.html 6 * 7 * $Id: //depot/code/org.antlr/main/main/antlr/TokenStreamRetryException.java#3 $ 8 */ 9 10 /** 11 * Aborted recognition of current token. Try to get one again. 12 * Used by TokenStreamSelector.retry() to force nextToken() 13 * of stream to re-enter and retry. 14 */ 15 public class TokenStreamRetryException extends TokenStreamException { 16 public TokenStreamRetryException() { 17 } 18 } 19