KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > client > beans > XMLFormException


1 /*
2  * XMLFormException.java
3  *
4  * Created on May 20, 2002, 8:53 AM
5  */

6
7 package com.quikj.client.beans;
8
9 /**
10  *
11  * @author Jack Martin
12  */

13 public class XMLFormException extends java.lang.Exception JavaDoc {
14     
15     private String JavaDoc excString;
16     
17     /**
18      * Constructs an instance of <code>XMLFormException</code> with the specified detail message.
19      * @param msg the detail message.
20      */

21     public XMLFormException(String JavaDoc msg) {
22         super(msg);
23         excString = msg;
24     }
25     
26     public String JavaDoc toString() {
27         return excString;
28     }
29 }
30
Popular Tags