Status304.php
5 months ago
Status305.php
5 months ago
Status306.php
5 months ago
Status400.php
5 months ago
Status401.php
5 months ago
Status402.php
5 months ago
Status403.php
5 months ago
Status404.php
5 months ago
Status405.php
5 months ago
Status406.php
5 months ago
Status407.php
5 months ago
Status408.php
5 months ago
Status409.php
5 months ago
Status410.php
5 months ago
Status411.php
5 months ago
Status412.php
5 months ago
Status413.php
5 months ago
Status414.php
5 months ago
Status415.php
5 months ago
Status416.php
5 months ago
Status417.php
5 months ago
Status418.php
5 months ago
Status428.php
5 months ago
Status429.php
5 months ago
Status431.php
5 months ago
Status500.php
5 months ago
Status501.php
5 months ago
Status502.php
5 months ago
Status503.php
5 months ago
Status504.php
5 months ago
Status505.php
5 months ago
Status511.php
5 months ago
StatusUnknown.php
5 months ago
Status414.php
32 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Exception for 414 Request-URI Too Large responses |
| 4 | * |
| 5 | * @package Requests\Exceptions |
| 6 | */ |
| 7 | |
| 8 | namespace AmeliaVendor\WpOrg\Requests\Exception\Http; |
| 9 | |
| 10 | use AmeliaVendor\WpOrg\Requests\Exception\Http; |
| 11 | |
| 12 | /** |
| 13 | * Exception for 414 Request-URI Too Large responses |
| 14 | * |
| 15 | * @package Requests\Exceptions |
| 16 | */ |
| 17 | final class Status414 extends Http { |
| 18 | /** |
| 19 | * HTTP status code |
| 20 | * |
| 21 | * @var integer |
| 22 | */ |
| 23 | protected $code = 414; |
| 24 | |
| 25 | /** |
| 26 | * Reason phrase |
| 27 | * |
| 28 | * @var string |
| 29 | */ |
| 30 | protected $reason = 'Request-URI Too Large'; |
| 31 | } |
| 32 |