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 ANTLRError extends Error {
09:
10: /**
11: * ANTLRError constructor comment.
12: */
13: public ANTLRError() {
14: super ();
15: }
16:
17: /**
18: * ANTLRError constructor comment.
19: * @param s java.lang.String
20: */
21: public ANTLRError(String s) {
22: super(s);
23: }
24: }
|