aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/exceptions.py
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2012-05-12 23:08:55 +0200
committerDavid Medina <davidmedina9@gmail.com>2012-05-12 23:08:55 +0200
commit748b320dd244341694c0d247d04c7f57ad4c052e (patch)
tree37b7ffad24d21f398dbb0592395b65599594c40b /pygithub3/exceptions.py
parentNew install environment to prod and dev (diff)
parentSome fixes/typos and 'validate_body' related (diff)
downloadpython-github3-748b320dd244341694c0d247d04c7f57ad4c052e.tar.xz
python-github3-748b320dd244341694c0d247d04c7f57ad4c052e.zip
Merge 'services/pull_requests'
Diffstat (limited to 'pygithub3/exceptions.py')
-rw-r--r--pygithub3/exceptions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pygithub3/exceptions.py b/pygithub3/exceptions.py
index a467256..9ee2597 100644
--- a/pygithub3/exceptions.py
+++ b/pygithub3/exceptions.py
@@ -8,7 +8,7 @@ class InvalidBodySchema(Exception):
pass
-class DoesNotExists(Exception):
+class RequestDoesNotExist(Exception):
""" Raised when `Request` factory can't find the subclass """
pass
@@ -37,6 +37,6 @@ class UnprocessableEntity(Exception):
class NotFound(Exception):
""" Raised when server response is 404
- Catched with a pygithub3-exception to `services.base.Service._bool` method
+ Caught with a pygithub3-exception to `services.base.Service._bool` method
"""
pass