no-framework-tutorial/implementation/07/src/Exception/NotFound.php

9 lines
132 B
PHP

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