summaryrefslogtreecommitdiffstats
path: root/lib/Config/DependencyException.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Config/DependencyException.php')
-rw-r--r--lib/Config/DependencyException.php29
1 files changed, 0 insertions, 29 deletions
diff --git a/lib/Config/DependencyException.php b/lib/Config/DependencyException.php
deleted file mode 100644
index 6f9d21be6..000000000
--- a/lib/Config/DependencyException.php
+++ /dev/null
@@ -1,29 +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\Config;
-
-class DependencyException extends \Exception
-{
-
-
- /**
- * Constructor
- *
- * @param string $msg the error message
- */
- public function __construct($msg)
- {
- parent::__construct($msg);
- }
-}