KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > monitor > alarm > AlarmTableException


1 /***************************************
2  * *
3  * JBoss: The OpenSource J2EE WebOS *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  ***************************************/

9  
10 package org.jboss.monitor.alarm;
11
12 /**
13  * AlarmTableException
14  *
15  * @author <a HREF="mailto:dimitris@jboss.org">Dimitris Andreadis</a>
16  *
17  * @version $Revision: 1.1.4.1 $
18 **/

19 public class AlarmTableException
20     extends Exception JavaDoc
21 {
22     // Constructors -------------------------------------------------
23
/**
24      * Constructs an AlarmTableException with null as its error
25      * detail message.
26     **/

27     public AlarmTableException()
28     {
29     }
30     
31     /**
32      * Constructs an AlarmTableException with the specified detail message.
33      * The error message can be retrieved by the Throwable.getMessage().
34      *
35      * @param s the detail message
36     **/

37     public AlarmTableException(String JavaDoc s)
38     {
39         super(s);
40     }
41 }
42
Popular Tags