blob: 249ace2e1f4cb3240977bbadd095c73b872cddfc (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
declare(strict_types=1);
class Minz_ControllerNotActionControllerException extends Minz_Exception {
public function __construct(string $controller_name, int $code = self::ERROR) {
$message = 'Controller `' . $controller_name . '` isn’t instance of ActionController';
parent::__construct ($message, $code);
}
}
|