This page lists files in the current directory. You can view content, get download/execute commands for Wget, Curl, or PowerShell, or filter the list using wildcards (e.g., `*.sh`).
wget 'https://lists2.roe3.org/FreshRSS/app/Exceptions/AlreadySubscribedException.php'
<?php
declare(strict_types=1);
class FreshRSS_AlreadySubscribed_Exception extends Minz_Exception {
private string $feedName = '';
public function __construct(string $url, string $feedName) {
parent::__construct('Already subscribed! ' . $url, 2135);
$this->feedName = $feedName;
}
public function feedName(): string {
return $this->feedName;
}
}
wget 'https://lists2.roe3.org/FreshRSS/app/Exceptions/BadUrlException.php'
<?php
declare(strict_types=1);
class FreshRSS_BadUrl_Exception extends FreshRSS_Feed_Exception {
public function __construct(string $url) {
parent::__construct('`' . $url . '` is not a valid URL');
}
}
wget 'https://lists2.roe3.org/FreshRSS/app/Exceptions/ContextException.php'
<?php
declare(strict_types=1);
/**
* An exception raised when a context is invalid
*/
class FreshRSS_Context_Exception extends Minz_Exception {
}
wget 'https://lists2.roe3.org/FreshRSS/app/Exceptions/EntriesGetterException.php'
<?php
declare(strict_types=1);
class FreshRSS_EntriesGetter_Exception extends Minz_Exception {
}
wget 'https://lists2.roe3.org/FreshRSS/app/Exceptions/FeedException.php'
<?php
declare(strict_types=1);
class FreshRSS_Feed_Exception extends Minz_Exception {
}
wget 'https://lists2.roe3.org/FreshRSS/app/Exceptions/FeedNotAddedException.php'
<?php
declare(strict_types=1);
class FreshRSS_FeedNotAdded_Exception extends Minz_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;
}
}
wget 'https://lists2.roe3.org/FreshRSS/app/Exceptions/ZipException.php'
<?php
declare(strict_types=1);
class FreshRSS_Zip_Exception extends Minz_Exception {
private int $zipErrorCode = 0;
public function __construct(int $zipErrorCode) {
parent::__construct('ZIP error!', 2141);
$this->zipErrorCode = $zipErrorCode;
}
public function zipErrorCode(): int {
return $this->zipErrorCode;
}
}
wget 'https://lists2.roe3.org/FreshRSS/app/Exceptions/ZipMissingException.php'
<?php
declare(strict_types=1);
class FreshRSS_ZipMissing_Exception extends Minz_Exception {
}