Files
FreshRSS/app/Exceptions/BadUrlException.php
Alexis Degrugillier 32c439a5d6 Revert inheritance
As I do not have the time at the moment to verify the change of inheritance, I changed it back to the original.
2015-03-05 06:51:16 -05:00

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');
}
}