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 SemanticException extends RecognitionException {
10: public SemanticException(String s) {
11: super (s);
12: }
13:
14: /** @deprecated As of ANTLR 2.7.2 use {@see #SemanticException(char, String, int, int) } */
15: public SemanticException(String s, String fileName, int line) {
16: this (s, fileName, line, -1);
17: }
18:
19: public SemanticException(String s, String fileName, int line,
20: int column) {
21: super(s, fileName, line, column);
22: }
23: }
|