no-framework-tutorial/implementation/14-middleware/src/Exception/NotFound.php
2025-07-08 22:52:56 +02:00

9 lines
132 B
PHP

<?php declare(strict_types=1);
namespace Lubian\NoFramework\Exception;
use Exception;
final class NotFound extends Exception
{
}