summaryrefslogtreecommitdiffstats
path: root/lib/Controller/JSONHttpErrorTrait.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Controller/JSONHttpErrorTrait.php')
-rw-r--r--lib/Controller/JSONHttpErrorTrait.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/Controller/JSONHttpErrorTrait.php b/lib/Controller/JSONHttpErrorTrait.php
new file mode 100644
index 000000000..785f3f02a
--- /dev/null
+++ b/lib/Controller/JSONHttpErrorTrait.php
@@ -0,0 +1,27 @@
+<?php
+/**
+ * Nextcloud - 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 JSONHttpErrorTrait
+{
+ /**
+ * @param \Exception $exception The exception to report
+ * @param int $code The http error code
+ * @return JSONResponse
+ */
+ public function error(\Exception $exception, $code)
+ {
+ return new JSONResponse(['message' => $exception->getMessage()], $code);
+ }
+}