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.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/Fetcher/FetcherException.php b/lib/Fetcher/FetcherException.php
new file mode 100644
index 000000000..27dd42f39
--- /dev/null
+++ b/lib/Fetcher/FetcherException.php
@@ -0,0 +1,26 @@
+<?php
+/**
+ * ownCloud - 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 Alessandro Cosentino 2012
+ * @copyright Bernhard Posselt 2012, 2014
+ */
+
+namespace OCA\News\Fetcher;
+
+class FetcherException extends \Exception {
+
+ /**
+ * Constructor
+ * @param string $msg the error message
+ */
+ public function __construct($msg){
+ parent::__construct($msg);
+ }
+
+} \ No newline at end of file