Package exceptions.metier

Examples of exceptions.metier.NombreTotalPlacesInsuffisantException


   */
  public Rangee getConsecutiveDsZone(Zone z, int nb)
    throws NombreTotalPlacesInsuffisantException{

    if(nb > z.getNbFauteuils())
      throw new NombreTotalPlacesInsuffisantException("Nombre total de places dans la " +
          "Zone est insuffisant pour rechercher "+nb+" places!");
   
    for(Iterator it = z.getLesRangees().iterator(); it.hasNext();){
      Rangee r = (Rangee)it.next();

View Full Code Here


  public Collection proposePlaces(Zone z, int nb)
    throws NombreTotalPlacesInsuffisantException{

    // s'il n'y reste plus assez de places dans la zone, on arrete toute de suite.
    if(z.getNbFauteuils() < nb)
      throw new NombreTotalPlacesInsuffisantException("Nombre total de places a rechercher " +
          "depasse l'ensemble de places disponibles dans la Zone");

    // compteur
    int nbCur = nb;
View Full Code Here

TOP

Related Classes of exceptions.metier.NombreTotalPlacesInsuffisantException

Copyright © 2018 www.massapicom. 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.