KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > persistence > antlr > TokenStreamRetryException


1 package persistence.antlr;
2
3 /* ANTLR Translator Generator
4  * Project led by Terence Parr at http://www.jGuru.com
5  * Software rights: http://www.antlr.org/license.html
6  *
7  */

8
9 /**
10  * Aborted recognition of current token. Try to get one again.
11  * Used by TokenStreamSelector.retry() to force nextToken()
12  * of stream to re-enter and retry.
13  */

14 public class TokenStreamRetryException extends TokenStreamException {
15     public TokenStreamRetryException() {
16     }
17 }
18
Popular Tags