summaryrefslogtreecommitdiffstats
path: root/controller/jsonhttperror.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 /controller/jsonhttperror.php
parent6a7ac3d9da3dea4130eb08a07a0a0603418d54ab (diff)
parent21728afff571adfc508cf5fa473d094946ef188f (diff)
merge
Diffstat (limited to 'controller/jsonhttperror.php')
-rw-r--r--controller/jsonhttperror.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/controller/jsonhttperror.php b/controller/jsonhttperror.php
new file mode 100644
index 000000000..a271878a8
--- /dev/null
+++ b/controller/jsonhttperror.php
@@ -0,0 +1,31 @@
+<?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