The default value of http_errors is true, so if a http request returns with a status code 4xx or 5xx, it will triggle 2 exceptions (GuzzleHttp\Exception\ClientException and GuzzleHttp\Exception\RequestException).
This is hard to handle it.
How can I set this options to false to handle every situation with $response->getStatus()?
AB#7353