aboutsummaryrefslogtreecommitdiff
path: root/lib/Minz/ControllerNotExistException.php
blob: 523867d118f0ecd7880fabd67facf3a9ede92ec1 (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);
	}
}