Developers guide

111
F.1.4. MasterswitchException.java
/**
* $Id: MasterswitchException.java,v 1.2 2002/10/22 08:23:11 oliverm Exp $
* Author: Oliver Mather
*
*/
package apt.masterswitch;
/**
* Description:
* <p>
* The exception object used to encapsulate any errors that can be
* encountered by the operation of the masterswitch.
* <p>
* Specific details of the error condition are contained in the message
* string and/or by a Throwable object.
* <p>
* @author $Author: oliverm $ <a href="mailto:oliverm@student.unsw.edu.au">Oliver Mather</a>
* @version $Revision: 1.2 $
*
*/
public class MasterswitchException extends Exception {
public MasterswitchException(String message) {
super(message);
}
public MasterswitchException(Throwable cause) {
super(cause);
}
public MasterswitchException(String message, Throwable cause) {
super(message, cause);
}
}