Package org.xrace.util

Examples of org.xrace.util.PlaqueException


    }
    catch (NumberFormatException e)
    {
      if (plaqueMinMaxDefini)
      {
        throw new PlaqueException("La plaque n'est pas un numéro. ");
      }
    }

    if (plaqueMinMaxDefini)
    {
      if (plaqueint < categorieParticipante.getPlaqueMin()
          || plaqueint > categorieParticipante.getPlaqueMax())
      {
        throw new PlaqueException("La plaque n'est pas dans la plage"
            + " de plaques assignées. ");
      }

      if (plaqueGeleMinMaxDefini)
      {
        if (plaqueint >= categorieParticipante.getPlaqueGeleMin()
            && plaqueint <= categorieParticipante
                .getPlaqueGeleMax())
        {
          throw new PlaqueException(
              "La plaque est dans la plage des "
                  + "plaques gelées. ");
        }
      }
    }
View Full Code Here


      {
        return this.setInfoSaison(plaque, saison, personne, categorie);
      }
      else
      {
        throw new PlaqueException(
            "Aucune plaque ne peut être assignée. ");
      }
    }

    return infoSaison;
View Full Code Here

TOP

Related Classes of org.xrace.util.PlaqueException

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.