no-framework-tutorial/implementation/08-inversion-of-control/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
{
}