summaryrefslogtreecommitdiffstats
path: root/db/doesnotexistexception.php
diff options
context:
space:
mode:
Diffstat (limited to 'db/doesnotexistexception.php')
-rw-r--r--db/doesnotexistexception.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/db/doesnotexistexception.php b/db/doesnotexistexception.php
deleted file mode 100644
index ef2e9dd7d..000000000
--- a/db/doesnotexistexception.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?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\Db;
-
-
-/**
- * This is returned or should be returned when a find request does not find an
- * entry in the database
- */
-class DoesNotExistException extends \Exception {
-
- /**
- * Constructor
- * @param string $msg the error message
- */
- public function __construct($msg){
- parent::__construct($msg);
- }
-
-} \ No newline at end of file