KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > persistence > antlr > TokenStreamException


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  * Anything that goes wrong while generating a stream of tokens.
11  */

12 public class TokenStreamException extends ANTLRException {
13     public TokenStreamException() {
14     }
15
16     public TokenStreamException(String JavaDoc s) {
17         super(s);
18     }
19 }
20
Popular Tags