BadUrlException.php 184 B

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