- HTTP status code
/**
* @var \Exception $e
*/
$e->getCode();
// 502
- HTTP status text
/**
* @var \Exception $e
*/
$e->getMessage();
// Bad Gateway
- HTTP error explanation
/**
* @var \Exception $e
*/
$e->getExplanation();
// Indicates that the server, while acting as a gateway or proxy, received an invalid response from an inbound server it accessed while attempting to fulfill the request.
- HTTP error spec
/**
* @var \Exception $e
*/
$e->getSpec();
// RFC7231#6.6.3
- HTTP error reference
/**
* @var \Exception $e
*/
$e->getReference();
// http://tools.ietf.org/html/rfc7231#section-6.6.3
- HTTP status
/**
* @var \Exception $e
*/
$e->getStatus()
// 502 Bad Gateway