mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-17 17:57:54 -05:00
15 lines
291 B
PHP
15 lines
291 B
PHP
<?php
|
|
|
|
class FreshRSS_FeedNotAdded_Exception extends Exception {
|
|
private $feedName = '';
|
|
|
|
public function __construct($url, $feedName) {
|
|
parent::__construct('Feed not added! ' . $url, 2147);
|
|
$this->feedName = $feedName;
|
|
}
|
|
|
|
public function feedName() {
|
|
return $this->feedName;
|
|
}
|
|
}
|