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 tokens.
10: */
11: public class TokenStreamException extends ANTLRException {
12: public TokenStreamException() {
13: }
14:
15: public TokenStreamException(String s) {
16: super (s);
17: }
18:
19: public TokenStreamException(String message, Throwable cause) {
20: super (message, cause);
21: }
22:
23: public TokenStreamException(Throwable cause) {
24: super(cause);
25: }
26: }
|