Package net.fqsc.inscriptions.commun

Examples of net.fqsc.inscriptions.commun.ValidationException


    inscription.setCategorie(categorie);

    try
    {
      if (!inscriptions.add(inscription))
        throw new ValidationException("La validation de dmLite a échoué. ");
    }
    catch (ActionException e)
    {
      throw new SystemeException(e);
    }
View Full Code Here


    try
    {
      if (!this.categories.add(categorieDb))
      {
        throw new ValidationException(
            "Les validations de dmLite ont échoué.");
      }
    }
    catch (final ActionException e)
    {
View Full Code Here

    {
      final Categorie beforeCategorie = (Categorie) this.categories.retrieveByOid(categorie.getOid());
     
      if (!this.categories.update(beforeCategorie, categorie))
      {
        throw new ValidationException("La validation de dmLite à échoué. ");
      }
    }
    catch (final ActionException e)
    {
      throw new SystemeException(e);
View Full Code Here

    try
    {
      if (!this.disciplines.add(discipline))
      {
        throw new ValidationException(
            "Les validations de dmLite ont échoué. ");
      }
    }
    catch (final ActionException e)
    {
View Full Code Here

    {
      final Discipline beforeDiscipline = (Discipline) this.disciplines.retrieveByOid(discipline.getOid());
     
      if (!this.disciplines.update(beforeDiscipline, discipline))
      {
        throw new ValidationException("La validation de dmLite à échoué. ");
      }
    }
    catch (final ActionException e)
    {
      throw new SystemeException(e);
View Full Code Here

    Validate.argNotNull(oid, "oid");
   
    final Personnes personnes = (Personnes) this.domainModel.getEntry("Personnes");   
   
    if(personnes.equals(null))
      throw new ValidationException("Il n'y a pas d'objet personne pour ce oid");
   
    return (Personne) personnes.retrieveByOid(oid);   
   
  }
View Full Code Here

    try
    {
      if (!course.getEvenement().getCourses().add(courseDb))
      {
        throw new ValidationException(
            "Les validations de dmLite ont échoué.");
      }
    }
    catch (final ActionException e)
    {
View Full Code Here

    try
    {
      if (!evenement.getSaison().getEvenements().add(evenementDb))
      {
        throw new ValidationException(
            "Les validations de dmLite ont échoué.");
      }
    }
    catch (final ActionException e)
    {
View Full Code Here

    try
    {
      if (!saisons.add(saisonDb))
      {
        throw new ValidationException(
            "Les validations de dmLite ont échoué.");
      }
    }
    catch (final ActionException e)
    {
View Full Code Here

    try
    {
      if (course.canBeDeleted())
      {
        if (!course.getEvenement().getCourses().remove(course))
          throw new ValidationException(
              "Les validations de dmLite ont échoué.");
      }
      else
      {
        throw new IllegalDeleteException(
View Full Code Here

TOP

Related Classes of net.fqsc.inscriptions.commun.ValidationException

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.