aboutsummaryrefslogtreecommitdiffstats
path: root/github3/exceptions.py
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2011-11-12 03:12:55 +0100
committerDavid Medina <davidmedina9@gmail.com>2011-11-12 03:14:50 +0100
commitc205c277fa5d8af9bd43ed55138e2a0552fb3e55 (patch)
tree1c954915728da9e81b43b2ff7e247d9c28da015e /github3/exceptions.py
parentAdded core_test and fix some bugs / pep8 (diff)
downloadpython-github3-c205c277fa5d8af9bd43ed55138e2a0552fb3e55.tar.xz
python-github3-c205c277fa5d8af9bd43ed55138e2a0552fb3e55.zip
Catch unauthorized requests. Bad credentials
Diffstat (limited to 'github3/exceptions.py')
-rw-r--r--github3/exceptions.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/github3/exceptions.py b/github3/exceptions.py
index b0894a9..b033001 100644
--- a/github3/exceptions.py
+++ b/github3/exceptions.py
@@ -9,6 +9,5 @@ class UnprocessableEntity(Exception):
pass
class NotFound(Exception):
pass
-class AnomUser(Exception):
- """ Exception for AnomUser handler """
+class Unauthorized(Exception):
pass