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