mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-24 13:17:59 -05:00
Remove spaces before parenthesis bis See https://github.com/marienfressinaud/FreshRSS/issues/655
7 lines
135 B
PHP
7 lines
135 B
PHP
<?php
|
|
class FreshRSS_Feed_Exception extends Exception {
|
|
public function __construct($message) {
|
|
parent::__construct($message);
|
|
}
|
|
}
|