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 tokens.
11: */
12: public class TokenStreamException extends ANTLRException {
13: public TokenStreamException() {
14: }
15:
16: public TokenStreamException(String s) {
17: super(s);
18: }
19: }
|