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

}