source: trunk/yao/share/antlr-2.7.7/antlr/SemanticException.java @ 1

Last change on this file since 1 was 1, checked in by lnalod, 15 years ago

Initial import of YAO sources

File size: 710 bytes
Line 
1package antlr;
2
3/* ANTLR Translator Generator
4 * Project led by Terence Parr at http://www.cs.usfca.edu
5 * Software rights: http://www.antlr.org/license.html
6 *
7 * $Id: //depot/code/org.antlr/release/antlr-2.7.7/antlr/SemanticException.java#2 $
8 */
9
10public class SemanticException extends RecognitionException {
11    public SemanticException(String s) {
12        super(s);
13    }
14
15    /** @deprecated As of ANTLR 2.7.2 use {@see #SemanticException(char, String, int, int) } */
16        public SemanticException(String s, String fileName, int line) {
17        this(s, fileName, line, -1);
18    }
19
20        public SemanticException(String s, String fileName, int line, int column) {
21        super(s, fileName, line, column);
22    }
23}
Note: See TracBrowser for help on using the repository browser.