public WhenHandlingAGetOganisationFailedException()
        {
            var exceptionContentList = new[]
            {
                "fist thing failed",
                "second this too",
                "third thing was out of office"
            };

            _exception = new GetOrganisationFailed(exceptionContentList);

            var handler = new GetOrganisationFailedHandler();

            _handledProblem = handler.GetApiProblemFor(_exception);
        }
 public GetOrganisationFailedHandlerTests()
 {
     _sut = new GetOrganisationFailedHandler();
 }