summaryrefslogtreecommitdiffstats
path: root/controller/jsonhttperror.php
diff options
context:
space:
mode:
Diffstat (limited to 'controller/jsonhttperror.php')
-rw-r--r--controller/jsonhttperror.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/controller/jsonhttperror.php b/controller/jsonhttperror.php
deleted file mode 100644
index 722019ae1..000000000
--- a/controller/jsonhttperror.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 Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Bernhard Posselt 2014
- */
-
-namespace OCA\News\Controller;
-
-use \OCP\AppFramework\Http\JSONResponse;
-
-
-trait JSONHttpError {
-
-
- /**
- * @param \Exception $exception the message that is returned taken from the
- * exception
- * @param int $code the http error code
- * @return \OCP\AppFramework\Http\JSONResponse
- */
- public function error(\Exception $exception, $code) {
- return new JSONResponse(['message' => $exception->getMessage()], $code);
- }
-
-
-} \ No newline at end of file