no-framework-tutorial/implementation/14-middleware/src/Exception/MethodNotAllowed.php
2025-07-08 23:02:04 +02:00

9 lines
140 B
PHP

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