KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > antlr > CharStreamException


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/CharStreamException.java#3 $
8  */

9
10 /**
11  * Anything that goes wrong while generating a stream of characters
12  */

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

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