@Override
 public void deleteUserMeal(int id, int userId) throws UnexpectedErrorException {
   try {
     userMealDao.delete(id, userId);
   } catch (DAOException e) {
     throw new UnexpectedErrorException();
   }
 }