4
0

ControllerNotExistException.php 270 B

123456789
  1. <?php
  2. class Minz_ControllerNotExistException extends Minz_Exception {
  3. public function __construct ($controller_name, $code = self::ERROR) {
  4. $message = 'Controller `' . $controller_name
  5. . '` doesn\'t exist';
  6. parent::__construct ($message, $code);
  7. }
  8. }