KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > persistence > antlr > CharStreamException


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 characters
11  */

12 public class CharStreamException extends ANTLRException {
13     /**
14      * CharStreamException constructor comment.
15      * @param s java.lang.String
16      */

17     public CharStreamException(String JavaDoc s) {
18         super(s);
19     }
20 }
21
Popular Tags