Requests_Exception_HTTP_408 WordPress Class

The HTTP 408 Request Timeout error means that the server took too long to respond to a request from your browser. This can be due to a number of factors, including network congestion, server load, or simply a slow internet connection. If you see this error, it is likely that the problem is not with your computer or internet connection, but with the website's server. There is not much you can do to fix this error, but you can try reloading the page. If the problem persists, you may want to contact the website's administrator or customer support.

Requests_Exception_HTTP_408 #

Exception for 408 Request Timeout responses


Source

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

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

	/**
	 * Reason phrase
	 *
	 * @var string
	 */
	protected $reason = 'Request Timeout';
}

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.