diff options
author | 2012-04-17 14:42:57 -0500 | |
---|---|---|
committer | 2012-04-17 14:42:57 -0500 | |
commit | 17649c939901573af53beeeeb9d7be08102d1503 (patch) | |
tree | fc3a99aafc36d61b7381043aede9807a66813886 /pygithub3/exceptions.py | |
parent | let request objects specify custom body validations (diff) | |
download | python-github3-17649c939901573af53beeeeb9d7be08102d1503.tar.xz python-github3-17649c939901573af53beeeeb9d7be08102d1503.zip |
more specific exception for missing Request classes
Diffstat (limited to 'pygithub3/exceptions.py')
-rw-r--r-- | pygithub3/exceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygithub3/exceptions.py b/pygithub3/exceptions.py index a467256..20cf058 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 |