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