aboutsummaryrefslogtreecommitdiffstats
path: root/github3/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'github3/exceptions.py')
-rw-r--r--github3/exceptions.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/github3/exceptions.py b/github3/exceptions.py
index b0894a9..b9070d7 100644
--- a/github3/exceptions.py
+++ b/github3/exceptions.py
@@ -1,7 +1,5 @@
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
-#
-# author: David Medina
class BadRequest(Exception):
pass
@@ -9,6 +7,7 @@ class UnprocessableEntity(Exception):
pass
class NotFound(Exception):
pass
-class AnomUser(Exception):
- """ Exception for AnomUser handler """
+class Unauthorized(Exception):
+ pass
+class UserIsAnonymous(Exception):
pass