1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-17 05:54:18 +02:00

exception: Remove HttpException class

This class served no particular purpose (other than adding a
layer on top of Exception).
This commit is contained in:
logmanoriginal
2018-11-18 16:53:21 +01:00
parent dbffbd4d4e
commit c6a7b9ac64
5 changed files with 6 additions and 16 deletions

View File

@@ -94,7 +94,7 @@ class FilterBridge extends FeedExpander {
}
try{
$this->collectExpandableDatas($this->getURI());
} catch (HttpException $e) {
} catch (Exception $e) {
$this->collectExpandableDatas($this->getURI());
}
}

View File

@@ -93,7 +93,7 @@ class WordPressBridge extends FeedExpander {
}
try{
$this->collectExpandableDatas($this->getURI() . '/feed/atom/');
} catch (HttpException $e) {
} catch (Exception $e) {
$this->collectExpandableDatas($this->getURI() . '/?feed=atom');
}