aboutsummaryrefslogtreecommitdiff
path: root/app/Exceptions/FeedNotAddedException.php
blob: b10e93f05dc0ed38eddb3c0788a887fde65938f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

class FreshRSS_FeedNotAdded_Exception extends Exception {

	/** @var string */
	private $url = '';

	public function __construct(string $url) {
		parent::__construct('Feed not added! ' . $url, 2147);
		$this->url = $url;
	}

	public function url(): string {
		return $this->url;
	}
}