blob: 5288d6dde11ceb534970bddf689ca3ace5fe9eb4 [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.sthbnd.mqtt.smarttopic.processor.exception;
/**
* This exception is raised whenever one of the supported processors {@see org.eclipse.internal.gateway.common.automata.Processor} failed to be executed
*
* @author <a href="mailto:Jander.BOTELHODONASCIMENTO@cea.fr">Jander Botelho do Nascimento</a>
*/
public class ProcessorException extends Exception {
public ProcessorException() {
super();
}
public ProcessorException(String message) {
super(message);
}
public ProcessorException(String message, Throwable cause) {
super(message, cause);
}
public ProcessorException(Throwable cause) {
super(cause);
}
protected ProcessorException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}