@Override
 public Project getProjectForInvitationToken(String token) throws NoSuchEntityException {
   try {
     return profileWebService.getProjectForInvitationToken(token);
   } catch (EntityNotFoundException e) {
     handle(e);
     throw new IllegalStateException();
   }
 }