mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-04-04 21:53:31 +03:00
Throw more detailed generic HTTP error
Take advantage of new response code and body properties to allow better logging.
This commit is contained in:
parent
9fe01151af
commit
ba8e7bda43
1 changed files with 2 additions and 2 deletions
|
@ -131,7 +131,7 @@ class RestClient{
|
|||
throw new MissingEndpoint(EXCEPTION_MISSING_ENDPOINT);
|
||||
}
|
||||
else{
|
||||
throw new GenericHTTPError(EXCEPTION_GENERIC_HTTP_ERROR);
|
||||
throw new GenericHTTPError(EXCEPTION_GENERIC_HTTP_ERROR, $httpResponseCode, $responseObj->getBody());
|
||||
}
|
||||
$result->http_response_code = $httpResponseCode;
|
||||
return $result;
|
||||
|
@ -147,4 +147,4 @@ class RestClient{
|
|||
}
|
||||
}
|
||||
|
||||
?>
|
||||
?>
|
||||
|
|
Loading…
Add table
Reference in a new issue