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
174 B
PHP
7 lines
174 B
PHP
<?php
|
|
class FreshRSS_BadUrl_Exception extends FreshRSS_Feed_Exception {
|
|
public function __construct($url) {
|
|
parent::__construct('`' . $url . '` is not a valid URL');
|
|
}
|
|
}
|