blob: c7111a41fef34a52ab3d986622c7e324784012d2 (
plain)
1
2
3
4
5
6
7
8
9
|
<?php
declare(strict_types=1);
class FreshRSS_BadUrl_Exception extends FreshRSS_Feed_Exception {
public function __construct(string $url) {
parent::__construct('`' . $url . '` is not a valid URL');
}
}
|