Package org.encuestame.persistence.exception

Examples of org.encuestame.persistence.exception.EnMeSurveyNotFoundException


        } else {
            survey = getSurveyDaoImp().getSurveyById(surveyId);
        }
        if (survey == null) {
            log.error("survey invalid with this id "+surveyId);
            throw new EnMeSurveyNotFoundException("tweet poll invalid with this id "+surveyId);
        }
        return survey;
    }
View Full Code Here


  public SurveySection retrieveSurveySectionById(final Long sectionId)
      throws EnMeSurveyNotFoundException {
    final SurveySection section = getSurveyDaoImp()
        .retrieveSurveySectionById(sectionId);
    if (section == null) {
      throw new EnMeSurveyNotFoundException(
          "Section not found with this id: " + sectionId);
    } else {
      return section;
    }
View Full Code Here

TOP

Related Classes of org.encuestame.persistence.exception.EnMeSurveyNotFoundException

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.