summaryrefslogtreecommitdiffstats
path: root/application/exceptions/NotAuthenticatedException.php
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2015-02-03 13:59:59 +0100
committerFlorian Pritz <bluewind@xinu.at>2015-02-03 16:15:52 +0100
commitbcd7920b817b60df9b1b266118419e44c39900db (patch)
treecf0b4515a6f99298109eb869b2d592a0e39bb465 /application/exceptions/NotAuthenticatedException.php
parent5816cbcad0e9c4cda4dc10b730a5a1ea2c4e419a (diff)
generalize authentication handling
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/exceptions/NotAuthenticatedException.php')
-rw-r--r--application/exceptions/NotAuthenticatedException.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/application/exceptions/NotAuthenticatedException.php b/application/exceptions/NotAuthenticatedException.php
new file mode 100644
index 000000000..de26318d8
--- /dev/null
+++ b/application/exceptions/NotAuthenticatedException.php
@@ -0,0 +1,14 @@
+<?php
+/*
+ * Licensed under AGPLv3
+ * (see COPYING for full license text)
+ *
+ */
+namespace exceptions;
+
+class NotAuthenticatedException extends UserInputException {
+ public function get_http_error_code()
+ {
+ return 401;
+ }
+}