private QualityProfileDto findNotNull(int profileId, DbSession session) {
   QualityProfileDto profile = dao.selectById(profileId, session);
   QProfileValidations.checkProfileIsNotNull(profile);
   return profile;
 }