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, 0 insertions, 13 deletions
diff --git a/pyaggr3g470r/lib/exceptions.py b/pyaggr3g470r/lib/exceptions.py
deleted file mode 100644
index 30c71a5c..00000000
--- a/pyaggr3g470r/lib/exceptions.py
+++ /dev/null
@@ -1,13 +0,0 @@
-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