Requests_Exception_HTTP_415 WordPress Class
This class represents an HTTP 415 error. This error indicates that the server is refusing to service the request because the request entity is in a format not supported by the requested resource for the requested method.
Requests_Exception_HTTP_415 #
Exception for 415 Unsupported Media Type responses
Source
File: wp-includes/Requests/Exception/HTTP/415.php
class Requests_Exception_HTTP_415 extends Requests_Exception_HTTP { /** * HTTP status code * * @var integer */ protected $code = 415; /** * Reason phrase * * @var string */ protected $reason = 'Unsupported Media Type'; }
Expand full source codeCollapse full source codeView on TracView on GitHub