01: package persistence.antlr;
02:
03: /* ANTLR Translator Generator
04: * Project led by Terence Parr at http://www.jGuru.com
05: * Software rights: http://www.antlr.org/license.html
06: *
07: */
08:
09: /**
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 s) {
18: super(s);
19: }
20: }
|