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';
}

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.