diff options
| author | 2015-03-04 23:32:20 -0500 | |
|---|---|---|
| committer | 2015-03-04 23:32:20 -0500 | |
| commit | aacd1ffd4052b04c724c2783b3ee2845ca4ada35 (patch) | |
| tree | ad3f68e3587f2b08ba851980386e235febc8e111 /app/Exceptions/FeedException.php | |
| parent | 0da9ad988cafc5b9946fcf1007ea70d95eaf2a15 (diff) | |
Refactor exceptions
I removed unnecessary constructors and unnecessary inheritance
Diffstat (limited to 'app/Exceptions/FeedException.php')
| -rw-r--r-- | app/Exceptions/FeedException.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/app/Exceptions/FeedException.php b/app/Exceptions/FeedException.php index 2433b3964..6c0cb3755 100644 --- a/app/Exceptions/FeedException.php +++ b/app/Exceptions/FeedException.php @@ -1,6 +1,5 @@ <?php -class FreshRSS_Feed_Exception extends Exception { - public function __construct($message) { - parent::__construct($message); - } + +class FreshRSS_Feed_Exception extends \Exception { + } |
