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;
}