package usda.weru.weps.serverControl;

/**
 *
 * @author mhaas
 */
public class ServerControlException extends Exception {
    private static final long serialVersionUID = 1L;
    
    protected String serviceName = "";

    public ServerControlException (String message, Throwable cause, String serviceName) {
        super(message, cause);

        this.serviceName = serviceName;
    }

    public String getServiceName () {
        return serviceName;
    }
    
}
