KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > persistence > antlr > ANTLRException


1 package persistence.antlr;
2
3 /* ANTLR Translator Generator
4  * Project led by Terence Parr at http://www.jGuru.com
5  * Software rights: http://www.antlr.org/license.html
6  *
7  */

8
9 public class ANTLRException extends Exception JavaDoc {
10
11     public ANTLRException() {
12         super();
13     }
14
15     public ANTLRException(String JavaDoc s) {
16         super(s);
17     }
18 }
19
Popular Tags