ControllerNotExistException.php 225 B

1234567
  1. <?php
  2. class Minz_ControllerNotExistException extends Minz_Exception {
  3. public function __construct ($controller_name, $code = self::ERROR) {
  4. $message = 'Controller not found!';
  5. parent::__construct ($message, $code);
  6. }
  7. }