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