aboutsummaryrefslogtreecommitdiff
path: root/lib/Minz/ControllerNotExistException.php
blob: 24a09a635104060c3b0f438a3b730209a8c898b1 (plain)
1
2
3
4
5
6
7
8
9
<?php
class Minz_ControllerNotExistException extends Minz_Exception {
	public function __construct ($controller_name, $code = self::ERROR) {
		$message = 'Controller `' . $controller_name
		         . '` doesn\'t exist';

		parent::__construct ($message, $code);
	}
}