Requests_Exception_HTTP_417 WordPress Class
The HTTP 417 status code means that the server could not satisfy the Expectation given in the Expect request header. This is usually due to a misconfigured server or a server that is not capable of fulfilling the request.
Requests_Exception_HTTP_417 #
Exception for 417 Expectation Failed responses
Source
File: wp-includes/Requests/Exception/HTTP/417.php
class Requests_Exception_HTTP_417 extends Requests_Exception_HTTP {
/**
* HTTP status code
*
* @var integer
*/
protected $code = 417;
/**
* Reason phrase
*
* @var string
*/
protected $reason = 'Expectation Failed';
}
Expand full source codeCollapse full source codeView on TracView on GitHub