blob: a59c99103dea65a6013fbc5924005cf8b308cb75 [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.core.method;
import org.eclipse.sensinact.gateway.common.primitive.InvalidValueException;
/**
* Exception thrown if an error occurred while creating a new {@link Attribute}
*
* @author <a href="mailto:christophe.munilla@cea.fr">Christophe Munilla</a>
*/
@SuppressWarnings("serial")
public class InvalidTriggerException extends InvalidValueException {
/**
* Constructor
*/
public InvalidTriggerException() {
super();
}
/**
* Constructor
*
* @param message
* the error message
*/
public InvalidTriggerException(String message) {
super(message);
}
/**
* Constructor
*
* @param cause
* the Throwable object which has caused the triggering of this
* exception
*/
public InvalidTriggerException(Throwable cause) {
super(cause);
}
/**
* Constructor
*
* @param message
* the error message
* @param cause
* the Throwable object which has caused the triggering of this
* exception
*/
public InvalidTriggerException(String message, Throwable cause) {
super(message, cause);
}
}