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 * AlarmTableException14 *15 * @author <a HREF="mailto:dimitris@jboss.org">Dimitris Andreadis</a>16 *17 * @version $Revision: 1.1.4.1 $18 **/19 public class AlarmTableException20 extends Exception 21 {22 // Constructors -------------------------------------------------23 /**24 * Constructs an AlarmTableException with null as its error25 * 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 message36 **/37 public AlarmTableException(String s)38 {39 super(s);40 }41 }42