Requests_Exception_HTTP_404{} WP 1.0
Exception for 404 Not Found responses
No Hooks.
Return
Null. Nothing.
Usage
$Requests_Exception_HTTP_404 = new Requests_Exception_HTTP_404(); // use class methods
Methods
No Methods in class.
Notes
- Package: Requests
Code of Requests_Exception_HTTP_404{} Requests Exception HTTP 404{} WP 5.6
class Requests_Exception_HTTP_404 extends Requests_Exception_HTTP {
/**
* HTTP status code
*
* @var integer
*/
protected $code = 404;
/**
* Reason phrase
*
* @var string
*/
protected $reason = 'Not Found';
}