Files
FreshRSS/app/Exceptions/FeedNotAddedException.php
Alexandre Alapetite 06d0099504 Require PHP 7.4+ (#5720)
* Require PHP 7.4+
https://github.com/FreshRSS/FreshRSS/discussions/5474

* Update Docker oldest
Alpine 3.13 with PHP 7.4.26

* Add missing packets to Docker oldest

* Update to typed properties
https://php.net/migration74.new-features#migration74.new-features.core.typed-properties

* More types
2023-10-30 20:47:27 +01:00

16 lines
278 B
PHP

<?php
class FreshRSS_FeedNotAdded_Exception extends Exception {
private string $url = '';
public function __construct(string $url) {
parent::__construct('Feed not added! ' . $url, 2147);
$this->url = $url;
}
public function url(): string {
return $this->url;
}
}