Files
molenda.net/eeeeee/vendor/slim/slim/Slim/Exception/HttpNotFoundException.php
T
Sebastian Molenda ab96d82fcf init
2026-05-12 21:10:38 +02:00

28 lines
562 B
PHP

<?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.';
}