package fr.aston.gestionsconges.exceptions;
import org.apache.log4j.Logger;
import fr.aston.gestionconges.utilitaires.Journalisation;
public class BusinessGestionCongesException extends GestionCongesException {
/**
*
*/
private static final long serialVersionUID = 646007285666742145L;
public BusinessGestionCongesException(Exception e) {
e.printStackTrace();
}
public BusinessGestionCongesException(String message) {
// TODO Auto-generated constructor stub
Journalisation j = new Journalisation ();
j.logSimple(message);
}
}