FeedNotAddedException.php 255 B

1234567891011121314
  1. <?php
  2. class FreshRSS_FeedNotAdded_Exception extends Exception {
  3. private $url = '';
  4. public function __construct($url) {
  5. parent::__construct('Feed not added! ' . $url, 2147);
  6. $this->url = $url;
  7. }
  8. public function url() {
  9. return $this->url;
  10. }
  11. }