no-framework-tutorial/implementation/08-inversion-of-control/src/Exception/NotAllowedException.php

11 lines
144 B
PHP

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