2025-06-02 13:34:17 +02:00

13 lines
240 B
PHP

<?php
namespace Lycoreco\Includes\Routing\HttpExceptions;
class NotFound404 extends PageError
{
protected $page_error = 404;
public function __construct($message = 'Not Found')
{
parent::__construct($message);
}
}