A free, self-hostable aggregator…
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
303 B

<?php
class FreshRSS_AlreadySubscribed_Exception extends Exception {
private $feedName = '';
public function __construct($url, $feedName) {
parent::__construct('Already subscribed! ' . $url, 2135);
$this->$feedName = $feedName;
}
public function feedName() {
return $this->feedName();
}
}