summaryrefslogtreecommitdiff
path: root/lib/Minz/RouteNotFoundException.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-03-24 20:55:18 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-03-24 20:55:18 +0100
commitc8aa451c768a3d4dfce3d19648f3c8420dedb74c (patch)
tree9d25dc6fdebd91ab80699f0b8d7fb91788a1ca4b /lib/Minz/RouteNotFoundException.php
parentfd829d75676a07a13a635db037efa92e364026a7 (diff)
Minz: remove url_rewriting
As suggested https://github.com/marienfressinaud/FreshRSS/issues/163#issuecomment-38478669 At the same time, removes a bunch of (almost) dead code such as Minz_Router (the few remaining lines being moved to Minz_FrontController to avoid a class) Contributes to https://github.com/marienfressinaud/FreshRSS/issues/303
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;
- }
-}