aboutsummaryrefslogtreecommitdiffstats
path: root/github3/exceptions.py
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2011-11-04 01:21:50 +0100
committerDavid Medina <davidmedina9@gmail.com>2011-11-04 01:21:50 +0100
commitbb540725ce15dcafd5ac5e5bb93e5a232ff4f33a (patch)
treedcda3ab57515f3bf7e46d98fc819737d458e4601 /github3/exceptions.py
parentComplete AuthUser handler (diff)
downloadpython-github3-bb540725ce15dcafd5ac5e5bb93e5a232ff4f33a.tar.xz
python-github3-bb540725ce15dcafd5ac5e5bb93e5a232ff4f33a.zip
Refactor base to handler design
Diffstat (limited to 'github3/exceptions.py')
-rw-r--r--github3/exceptions.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/github3/exceptions.py b/github3/exceptions.py
index 72da776..b0894a9 100644
--- a/github3/exceptions.py
+++ b/github3/exceptions.py
@@ -3,6 +3,12 @@
#
# author: David Medina
+class BadRequest(Exception):
+ pass
+class UnprocessableEntity(Exception):
+ pass
+class NotFound(Exception):
+ pass
class AnomUser(Exception):
""" Exception for AnomUser handler """
pass