/***************************************
 *                                     *
 *  JBoss: The OpenSource J2EE WebOS   *
 *                                     *
 *  Distributable under LGPL license.  *
 *  See terms of license at gnu.org.   *
 *                                     *
 ***************************************/
 
package org.jboss.monitor.alarm;

/**
 * AlarmTableException
 *
 * @author  <a href="mailto:dimitris@jboss.org">Dimitris Andreadis</a>
 *
 * @version $Revision: 1.1.4.1 $
**/
public class AlarmTableException
    extends Exception
{
    // Constructors -------------------------------------------------
    /**
     * Constructs an AlarmTableException with null as its error
     * detail message.
    **/
    public AlarmTableException()
    {
    }
    
    /**
     * Constructs an AlarmTableException with the specified detail message.
     * The error message can be retrieved by the Throwable.getMessage().
     *
     * @param s the detail message
    **/
    public AlarmTableException(String s)
    {
        super(s);
    }
}