no-framework-tutorial/implementation/09-dependency-injector/src/Exception/NotFoundException.php

11 lines
142 B
PHP

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