4
0

BadUrlException.php 207 B

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