aboutsummaryrefslogtreecommitdiff
path: root/lib/Minz/ControllerNotExistException.php
blob: 2d21789742b092f2a2f74a28cd6b140b6d7e65bd (plain)
1
2
3
4
5
6
7
<?php
class Minz_ControllerNotExistException extends Minz_Exception {
	public function __construct(int $code = self::ERROR) {
		$message = 'Controller not found!';
		parent::__construct ($message, $code);
	}
}