Requests_Exception_HTTP_428 WordPress Class

This class represents an HTTP 428 error. It is raised when a client makes a request that is missing information required by the server.

Requests_Exception_HTTP_428 #

Exception for 428 Precondition Required responses


Description

Top ↑

See also


Top ↑

Source

File: wp-includes/Requests/Exception/HTTP/428.php

class Requests_Exception_HTTP_428 extends Requests_Exception_HTTP {
	/**
	 * HTTP status code
	 *
	 * @var integer
	 */
	protected $code = 428;

	/**
	 * Reason phrase
	 *
	 * @var string
	 */
	protected $reason = 'Precondition Required';
}

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.