[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Exception for 404 Not Found responses 4 * 5 * @package Requests\Exceptions 6 */ 7 8 namespace WpOrg\Requests\Exception\Http; 9 10 use WpOrg\Requests\Exception\Http; 11 12 /** 13 * Exception for 404 Not Found responses 14 * 15 * @package Requests\Exceptions 16 */ 17 final class Status404 extends Http { 18 /** 19 * HTTP status code 20 * 21 * @var integer 22 */ 23 protected $code = 404; 24 25 /** 26 * Reason phrase 27 * 28 * @var string 29 */ 30 protected $reason = 'Not Found'; 31 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated : Sat Nov 23 08:20:01 2024 | Cross-referenced by PHPXref |