01: package antlr;
02:
03: /* ANTLR Translator Generator
04: * Project led by Terence Parr at http://www.cs.usfca.edu
05: * Software rights: http://www.antlr.org/license.html
06: */
07:
08: /**
09: * Aborted recognition of current token. Try to get one again.
10: * Used by TokenStreamSelector.retry() to force nextToken()
11: * of stream to re-enter and retry.
12: */
13: public class TokenStreamRetryException extends TokenStreamException {
14: public TokenStreamRetryException() {
15: }
16: }
|