/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */

package org.jboss.mx.server;

/**
 * @author  <a href="mailto:juha@jboss.org">Juha Lindfors</a>.
 * @version $Revision: 1.4.8.1 $
 *   
 */
public class TimeoutException
   extends Exception
{
   private static final long serialVersionUID = -5392945073280632822L;

   public TimeoutException()
   {
      super();
   }
   
   public TimeoutException(String msg)
   {
      super(msg);
   }
}