KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > piaget > analyze > SyntaxException


1 /*
2  * SyntaxException.java
3  *
4  * Created on April 21, 2005, 3:03 PM
5  */

6
7 package org.netbeans.modules.piaget.analyze;
8
9 /**
10  *
11  * @author loicsegapelli
12  */

13 public class SyntaxException extends java.lang.Exception JavaDoc {
14     
15     /**
16      * Creates a new instance of <code>SyntaxException</code> without detail message.
17      */

18     public SyntaxException() {
19     }
20     
21     
22     /**
23      * Constructs an instance of <code>SyntaxException</code> with the specified detail message.
24      * @param msg the detail message.
25      */

26     public SyntaxException(String JavaDoc msg) {
27         super(msg);
28     }
29 }
30
Popular Tags