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 ANTLRException extends Exception {
10:
11: public ANTLRException() {
12: super ();
13: }
14:
15: public ANTLRException(String s) {
16: super(s);
17: }
18: }
|