index/src/Routing/RouteMethodNotSupportedException.php

14 lines
295 B
PHP
Raw Normal View History

2022-09-13 13:13:11 +00:00
<?php
// RouteMethodNotSupportedException.php
// Created: 2022-01-20
// Updated: 2022-01-20
namespace Index\Routing;
use RuntimeException;
/**
* Exception thrown when an unsupported request method is invoked. (HTTP 405)
*/
class RouteMethodNotSupportedException extends RuntimeException {}