blob: b74473ae3d2c6025ae91240e5f59209a7000845a [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.common.constraint;
/**
* Exception thrown if an error occurred while instantiating a Constraint
*
* @author <a href="mailto:christophe.munilla@cea.fr">Christophe Munilla</a>
*/
@SuppressWarnings("serial")
public class InvalidConstraintDefinitionException extends Exception {
/**
* Constructor
*/
public InvalidConstraintDefinitionException() {
super();
}
/**
* Constructor
*
* @param message the error message
*/
public InvalidConstraintDefinitionException(String message) {
super(message);
}
/**
* Constructor
*
* @param cause the Throwable object which has caused the triggering of this
* exception
*/
public InvalidConstraintDefinitionException(Throwable cause) {
super(cause);
}
/**
* Constructor
*
* @param message the error message
* @param cause the Throwable object which has caused the triggering of this
* exception
*/
public InvalidConstraintDefinitionException(String message, Throwable cause) {
super(message, cause);
}
}