4
0

ControllerNotExistException.php 235 B

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