@Override
 public void deleteNode(int noteId) throws ServiceEntityNotFoundException {
   try {
     noteDao.deleteNote(noteId);
   } catch (DaoEntityNotFoundException e) {
     throw new ServiceEntityNotFoundException(e);
   }
 }