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: * Anything that goes wrong while generating a stream of characters
10: */
11: public class CharStreamException extends ANTLRException {
12: /**
13: * CharStreamException constructor comment.
14: * @param s java.lang.String
15: */
16: public CharStreamException(String s) {
17: super(s);
18: }
19: }
|