KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > antlr > SemanticException


1 package antlr;
2
3 /* ANTLR Translator Generator
4  * Project led by Terence Parr at http://www.jGuru.com
5  * Software rights: http://www.antlr.org/RIGHTS.html
6  *
7  * $Id: //depot/code/org.antlr/main/main/antlr/SemanticException.java#5 $
8  */

9
10 public class SemanticException extends RecognitionException {
11     public SemanticException(String JavaDoc s) {
12         super(s);
13     }
14
15     public SemanticException(String JavaDoc s, String JavaDoc fileName, int line, int column) {
16         super(s, fileName, line, column);
17     }
18 }
19
Popular Tags