aboutsummaryrefslogtreecommitdiff
path: root/app/Exceptions/BadUrlException.php
blob: 654d03c1846e8feaa7baac7d09986a0b8f50764b (plain)
1
2
3
4
5
6
7
8
<?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');
	}
}