blob: 9369173412ab8e40fafe4b5f8fd8e24a28cdc822 [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 InterpolationException extends Exception {
public InterpolationException() {
super();
}
public InterpolationException(String message) {
super(message);
}
public InterpolationException(String message, Throwable cause) {
super(message, cause);
}
public InterpolationException(Throwable cause) {
super(cause);
}
public InterpolationException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}