Files
FreshRSS/lib/Minz/ControllerNotExistException.php
Alexandre Alapetite 57fce758f5 Fix HTML injections (#2157)
Minz: Fix HTML injections
2018-11-28 22:16:14 +01:00

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);
}
}