KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > Util > SyntaxErrorException


1 /* $Id: SyntaxErrorException.java,v 1.2 2004/06/29 09:50:39 kofron Exp $ */
2
3 package SOFA.SOFAnode.Util;
4
5 /**
6  * The class for syntax error exceptions
7  *
8  * @author Stanislav Visnovsky
9  * @version 1.0.0
10 */

11 public class SyntaxErrorException extends Exception JavaDoc {
12
13     /**
14      * Creates the instance of a new syntax error exception.
15      *
16      * @author Stanislav Visnovsky
17      * @version 1.0.0
18     */

19     public SyntaxErrorException() { super(); }
20
21     /**
22      * Creates the instance of a new syntax error exception with a given comment.
23      *
24      * @author Stanislav Visnovsky
25      * @version 1.0.0
26      * @param s the comment on the raised exception
27     */

28     public SyntaxErrorException(String JavaDoc s) { super(s); }
29 }
30
Popular Tags