All Downloads are FREE. Search and download functionalities are using the official Maven repository.

info.kapable.sondes.scenarios.ScenarioException Maven / Gradle / Ivy

package info.kapable.sondes.scenarios;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class ScenarioException extends Exception {

	private String erreur;
	private static final Logger logger = LoggerFactory.getLogger(ScenarioException.class);
	
	public ScenarioException(String erreur) {
		// TODO Auto-generated constructor stub
		super();
		this.erreur = erreur;
		logger.error("Scenario : ERREUR: " + erreur);
	}

	public String getErreur() {
		return erreur;
	}

	public void setErreur(String erreur) {
		this.erreur = erreur;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy