mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-19 13:54:44 -04:00
10 lines
164 B
PHP
10 lines
164 B
PHP
<?php
|
|
|
|
class FreshRSS_BadUrl_Exception extends \Exception {
|
|
|
|
public function __construct($url) {
|
|
parent::__construct('`' . $url . '` is not a valid URL');
|
|
}
|
|
|
|
}
|