diff options
Diffstat (limited to 'src/Exceptions/UnknownMethodException.php')
| -rw-r--r-- | src/Exceptions/UnknownMethodException.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Exceptions/UnknownMethodException.php b/src/Exceptions/UnknownMethodException.php new file mode 100644 index 0000000..220cf42 --- /dev/null +++ b/src/Exceptions/UnknownMethodException.php @@ -0,0 +1,12 @@ +<?php + +declare(strict_types=1); + +namespace Lightscale\Router\Exceptions; + +use RuntimeException; + +class UnknownMethodException extends RuntimeException +{ + protected $message = 'Unknown HTTP request method'; +} |
