Package org.xrace.util

Examples of org.xrace.util.BaseValidationException


    {
      if (inscription.getId() == null
          && findByPersonneCourse(inscription.getPersonne(),
              inscription.getCourse()) != null)
      {
        throw new BaseValidationException(
            "La personne est déjà inscrite");
      }
    }
    else
    {
View Full Code Here


      final Date prixApres)
  {
    if ((prixAvantDate != null && prixAvant == null)
        || (prixAvantDate == null && prixAvant != null))
    {
      throw new BaseValidationException("Vous devez saisir une combinaison "
          + "date-prix pour chaque option 1 activée");
    }

    if ((prixApresDate != null && prixApres == null)
        || (prixApresDate == null && prixApres != null))
    {
      throw new BaseValidationException("Vous devez saisir une combinaison "
          + "date-prix pour chaque option 2 activée");
    }

    if ((prixAvantDate != null) && (prixApresDate != null))
    {
      if (prixAvant.after(prixApres))
      {
        throw new BaseValidationException(
            "La date limite pour bénéficier du tarif option 1 "
                + "doit précéder la date du tarif option 2");
      }
    }
  }
View Full Code Here

  public Facture createFacture(final Personne personne, final Cart cart)
  {
    if (cart.getItems().isEmpty())
    {
      throw new BaseValidationException("Impossible de créer la facture "
          + "car le panier d'achat est vide");
    }

    final Facture facture = new Facture();
    facture.setPersonne(personne);
View Full Code Here

TOP

Related Classes of org.xrace.util.BaseValidationException

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.