KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > editor > app > core > properties > BadPropertyNameException


1 /*
2  * BadPropertyNameException.java
3  *
4  * Created on November 18, 2002, 10:46 AM
5  */

6
7 package org.netbeans.test.editor.app.core.properties;
8
9 /**
10  *
11  * @author eh103527
12  */

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

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

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