@Override
  public void unwatchProject(String projectIdentifier) throws NoSuchEntityException {
    setTenancyContext(projectIdentifier);

    try {
      profileWebService.unwatchProject(projectIdentifier);
    } catch (EntityNotFoundException e) {
      handle(e);
      throw new IllegalStateException();
    }
  }