blob: 37f69f863caa899d25b953b3db4f215a794f3e00 [file] [log] [blame]
/*
* $Id$
* $Revision$
* $Date$
*
* ================================================================================
* Copyright (c)
* All rechten voorbehouden.
*/
package nl.openedge.util.jetty;
/**
* Exceptions that can be thrown by the JettyMonitor.
*/
public class JettyMonitorException extends Exception
{
/**
* Construct.
*/
public JettyMonitorException()
{
super();
}
/**
* Construct.
* @param message exception message
*/
public JettyMonitorException(String message)
{
super(message);
}
/**
* Construct.
* @param cause exception cause
*/
public JettyMonitorException(Throwable cause)
{
super(cause);
}
/**
* Construct.
* @param message exception message
* @param cause exception cause
*/
public JettyMonitorException(String message, Throwable cause)
{
super(message, cause);
}
}