D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
usr
/
local
/
psa
/
admin
/
plib
/
vendor
/
slim
/
slim
/
Slim
/
Exception
/
Filename :
HttpNotFoundException.php
back
Copy
<?php /** * Slim Framework (https://slimframework.com) * * @license https://github.com/slimphp/Slim/blob/4.x/LICENSE.md (MIT License) */ declare(strict_types=1); namespace Slim\Exception; class HttpNotFoundException extends HttpSpecializedException { /** * @var int */ protected $code = 404; /** * @var string */ protected $message = 'Not found.'; protected string $title = '404 Not Found'; protected string $description = 'The requested resource could not be found. Please verify the URI and try again.'; }