Package fr.aston.gestionsconges.exceptions

Source Code of fr.aston.gestionsconges.exceptions.BusinessGestionCongesException

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);
  }
}
TOP

Related Classes of fr.aston.gestionsconges.exceptions.BusinessGestionCongesException

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.