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