KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > web > talk > messaging > AceMessageException


1 /*
2  * AceMessageException.java
3  *
4  * Created on April 18, 2002, 1:18 AM
5  */

6
7 package com.quikj.application.web.talk.messaging;
8
9 /**
10  *
11  * @author amit
12  */

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

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

28     public AceMessageException(String JavaDoc msg)
29     {
30         super(msg);
31     }
32 }
33
34
35
Popular Tags