Files
FreshRSS/app/Exceptions/FeedException.php
Marien Fressinaud b5dee73ea0 Coding style
Remove spaces before parenthesis bis

See https://github.com/marienfressinaud/FreshRSS/issues/655
2014-10-05 18:51:08 +02:00

7 lines
135 B
PHP

<?php
class FreshRSS_Feed_Exception extends Exception {
public function __construct($message) {
parent::__construct($message);
}
}