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

11 lines
153 B
PHP

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