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
8 lines
145 B
PHP
8 lines
145 B
PHP
<?php
|
|
|
|
class FreshRSS_EntriesGetter_Exception extends Exception {
|
|
public function __construct($message) {
|
|
parent::__construct($message);
|
|
}
|
|
}
|