aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/lib/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyaggr3g470r/lib/exceptions.py')
-rw-r--r--pyaggr3g470r/lib/exceptions.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/pyaggr3g470r/lib/exceptions.py b/pyaggr3g470r/lib/exceptions.py
new file mode 100644
index 00000000..30c71a5c
--- /dev/null
+++ b/pyaggr3g470r/lib/exceptions.py
@@ -0,0 +1,13 @@
+class PyAggError(Exception):
+ status_code = None
+ default_message = ''
+
+
+class Forbidden(PyAggError):
+ status_code = 403
+ default_message = 'You do not have the rights to access that resource'
+
+
+class NotFound(PyAggError):
+ status_code = 404
+ default_message = 'Resource was not found'
bgstack15