mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-23 04:38:01 -05:00
* Update Travis line length * Also check whitespace in CSS files * Fix line length ext.php * More syntax, string templates * Fix exclude-pattern * Test JS files as well
9 lines
290 B
PHP
9 lines
290 B
PHP
<?php
|
||
class Minz_ControllerNotActionControllerException extends Minz_Exception {
|
||
public function __construct ($controller_name, $code = self::ERROR) {
|
||
$message = 'Controller `' . $controller_name . '` isn’t instance of ActionController';
|
||
|
||
parent::__construct ($message, $code);
|
||
}
|
||
}
|