summaryrefslogtreecommitdiffstats
path: root/db/multipleobjectsreturnedexception.php
diff options
context:
space:
mode:
Diffstat (limited to 'db/multipleobjectsreturnedexception.php')
-rw-r--r--db/multipleobjectsreturnedexception.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/db/multipleobjectsreturnedexception.php b/db/multipleobjectsreturnedexception.php
deleted file mode 100644
index 922d7a22a..000000000
--- a/db/multipleobjectsreturnedexception.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 finds more than one
- * row
- */
-class MultipleObjectsReturnedException extends \Exception {
-
- /**
- * Constructor
- * @param string $msg the error message
- */
- public function __construct($msg){
- parent::__construct($msg);
- }
-
-} \ No newline at end of file