summaryrefslogtreecommitdiffstats
path: root/lib/Fetcher/FetcherException.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Fetcher/FetcherException.php')
-rw-r--r--lib/Fetcher/FetcherException.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/Fetcher/FetcherException.php b/lib/Fetcher/FetcherException.php
deleted file mode 100644
index 263b54239..000000000
--- a/lib/Fetcher/FetcherException.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-/**
- * Nextcloud - News
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
- *
- * @author Alessandro Cosentino <cosenal@gmail.com>
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright 2012 Alessandro Cosentino
- * @copyright 2012-2014 Bernhard Posselt
- */
-
-namespace OCA\News\Fetcher;
-
-class FetcherException extends \Exception
-{
-
- /**
- * Constructor
- *
- * @param string $msg the error message
- */
- public function __construct(string $msg)
- {
- parent::__construct($msg);
- }
-}