index/src/Routing/RouteMethodNotSupportedException.php

14 lines
295 B
PHP

<?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 {}