blob: aecdc8e77aa1f6fdaf878ad3fbbc0874ac8dad76 [file] [log] [blame]
/*
* Copyright (c) 2017 CEA.
* 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:
* CEA - 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:cmunilla@cmssi.fr">Christophe Munilla</a>
*/
@SuppressWarnings("serial")
public class InvalidSignatureException extends InvalidValueException {
/**
* Constructor
*/
public InvalidSignatureException() {
super();
}
/**
* Constructor
*
* @param message
* the error message
*/
public InvalidSignatureException(String message) {
super(message);
}
/**
* Constructor
*
* @param cause
* the Throwable object which has caused the triggering of this
* exception
*/
public InvalidSignatureException(Throwable cause) {
super(cause);
}
/**
* Constructor
*
* @param message
* the error message
* @param cause
* the Throwable object which has caused the triggering of this
* exception
*/
public InvalidSignatureException(String message, Throwable cause) {
super(message, cause);
}
}