aboutsummaryrefslogtreecommitdiff
path: root/src/Routing/RouteNotFoundException.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Routing/RouteNotFoundException.php')
-rw-r--r--src/Routing/RouteNotFoundException.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Routing/RouteNotFoundException.php b/src/Routing/RouteNotFoundException.php
new file mode 100644
index 0000000..ae0289d
--- /dev/null
+++ b/src/Routing/RouteNotFoundException.php
@@ -0,0 +1,11 @@
+<?php
+
+declare(strict_types=1);
+
+namespace BrettParson\MiniRoute\Routing;
+
+use RuntimeException;
+
+final class RouteNotFoundException extends RuntimeException
+{
+}