mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-22 12:17:54 -05:00
8 lines
225 B
PHP
8 lines
225 B
PHP
<?php
|
|
class Minz_ControllerNotExistException extends Minz_Exception {
|
|
public function __construct ($controller_name, $code = self::ERROR) {
|
|
$message = 'Controller not found!';
|
|
parent::__construct ($message, $code);
|
|
}
|
|
}
|