mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2025-12-31 09:27:47 -05:00
As I do not have the time at the moment to verify the change of inheritance, I changed it back to the original.
10 lines
177 B
PHP
10 lines
177 B
PHP
<?php
|
|
|
|
class FreshRSS_BadUrl_Exception extends FreshRSS_Feed_Exception {
|
|
|
|
public function __construct($url) {
|
|
parent::__construct('`' . $url . '` is not a valid URL');
|
|
}
|
|
|
|
}
|