summaryrefslogtreecommitdiffstats
path: root/db/doesnotexistexception.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-09-16 16:24:20 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-09-16 16:24:20 +0200
commit9e36ef31f9bf16d43326fd047619ada5ff16e072 (patch)
treee228816adedacfed87eb08e8bc86658536cbbe86 /db/doesnotexistexception.php
parent6a7ac3d9da3dea4130eb08a07a0a0603418d54ab (diff)
parent21728afff571adfc508cf5fa473d094946ef188f (diff)
merge
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