Requests_Exception_HTTP_406 WordPress Class
The HTTP 406 Not Acceptable is an HTTP response status code indicating that the client has requested a resource that is not able to be served by the server due to the resource's media type or other characteristics, as specified by the client's Accept HTTP request header field.
Requests_Exception_HTTP_406 #
Exception for 406 Not Acceptable responses
Source
File: wp-includes/Requests/Exception/HTTP/406.php
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | class Requests_Exception_HTTP_406 extends Requests_Exception_HTTP { /** * HTTP status code * * @var integer */ protected $code = 406; /** * Reason phrase * * @var string */ protected $reason = 'Not Acceptable' ; } |
Expand full source codeCollapse full source codeView on TracView on GitHub