summaryrefslogtreecommitdiff
path: root/lib/Minz/ControllerNotExistException.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Minz/ControllerNotExistException.php')
-rw-r--r--lib/Minz/ControllerNotExistException.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Minz/ControllerNotExistException.php b/lib/Minz/ControllerNotExistException.php
index 523867d11..24a09a635 100644
--- a/lib/Minz/ControllerNotExistException.php
+++ b/lib/Minz/ControllerNotExistException.php
@@ -3,7 +3,7 @@ class Minz_ControllerNotExistException extends Minz_Exception {
public function __construct ($controller_name, $code = self::ERROR) {
$message = 'Controller `' . $controller_name
. '` doesn\'t exist';
-
+
parent::__construct ($message, $code);
}
}