Requests_Exception_HTTP_304 WordPress Class
The Requests_Exception_HTTP_304 Wordpress class is used to indicate that a page has not been modified since the last time it was requested. This can be used to improve performance by caching pages that have not been modified.
Requests_Exception_HTTP_304 #
Exception for 304 Not Modified responses
Source
File: wp-includes/Requests/Exception/HTTP/304.php
class Requests_Exception_HTTP_304 extends Requests_Exception_HTTP { /** * HTTP status code * * @var integer */ protected $code = 304; /** * Reason phrase * * @var string */ protected $reason = 'Not Modified'; }
Expand full source codeCollapse full source codeView on TracView on GitHub