Package org.xrace

Examples of org.xrace.CategorieException


    final CategorieParticipante catPart = categorieParticipanteService
        .getCategorieParticipante(saison, categorie);

    if (catPart == null)
    {
      throw new CategorieException(
          "La catégorie ne participe pas à la saison. ");
    }
  }
View Full Code Here


    Tarification tarification = tarificationService.findByCourseCategorie(
        inscription.getCourse(), inscription.getCategorie());

    if (tarification == null)
    {
      throw new CategorieException("La catégorie ne participe"
          + " pas à la course. ");
    }

    getGenericDao().save(inscription);
  }
View Full Code Here

    final CategorieParticipante categorieParticipante = categorieParticipanteService
        .getCategorieParticipante(evenement.getSaison(), categorie);
    if (categorieParticipante == null)
    {
      throw new CategorieException(
          "La catégorie ne participe pas à la saison. ");
    }

    ServiceUtils.validateUniqueAndDetach(rabaisEvenement,
        findByEvenementCategorieNbCourses(evenement, categorie,
View Full Code Here

  {
    String[] split = codeComplet.split("-");

    if (split.length != 3)
    {
      throw new CategorieException("Le code complet de catégorie "
          + codeComplet + " est invalide. ");
    }

    String code = split[0];
    String sexe = split[1];
    String codeDiscipline = split[2];

    Discipline discipline = disciplineService.findByNom(codeDiscipline);

    if (discipline == null)
    {
      throw new CategorieException("La discipline dans le "
          + "code complet de catégorie " + codeComplet
          + " n'est pas valide. ");
    }

    return findByCode(code, sexe, discipline);
View Full Code Here

    Tarification tarification = null;

    if (categorieParticipanteService.getCategorieParticipante(course
        .getEvenement().getSaison(), categorie) == null)
    {
      throw new CategorieException(
          "La catégorie ne participe pas à la saison. ");
    }

    tarification = findByCourseCategorie(course, categorie);
View Full Code Here

TOP

Related Classes of org.xrace.CategorieException

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.