blob: a024e1cbdc909534a2a49cb8deef1c8fd7c829b4 (
plain)
1
2
3
4
5
6
7
|
<?php
class Minz_ControllerNotExistException extends Minz_Exception {
public function __construct ($code = self::ERROR) {
$message = 'Controller not found!';
parent::__construct ($message, $code);
}
}
|