blob: c59c75fdc67161a1d6ab4d41920224436976ff56 [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.interpolator.exception;
public class InvalidValueException extends InterpolationException {
public InvalidValueException() {
super();
}
public InvalidValueException(String message) {
super(message);
}
public InvalidValueException(String message, Throwable cause) {
super(message, cause);
}
public InvalidValueException(Throwable cause) {
super(cause);
}
public InvalidValueException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}