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