summaryrefslogtreecommitdiff
path: root/lib/Minz/RouteNotFoundException.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Minz/RouteNotFoundException.php')
-rw-r--r--lib/Minz/RouteNotFoundException.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/Minz/RouteNotFoundException.php b/lib/Minz/RouteNotFoundException.php
deleted file mode 100644
index dc4f6fbad..000000000
--- a/lib/Minz/RouteNotFoundException.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-class Minz_RouteNotFoundException extends Minz_Exception {
- private $route;
-
- public function __construct ($route, $code = self::ERROR) {
- $this->route = $route;
-
- $message = 'Route `' . $route . '` not found';
-
- parent::__construct ($message, $code);
- }
-
- public function route () {
- return $this->route;
- }
-}