no-framework-tutorial/implementation/12/src/Exception/NotFound.php
2022-05-31 18:50:35 +02:00

9 lines
132 B
PHP

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