From bb540725ce15dcafd5ac5e5bb93e5a232ff4f33a Mon Sep 17 00:00:00 2001 From: David Medina Date: Fri, 4 Nov 2011 01:21:50 +0100 Subject: Refactor base to handler design --- github3/exceptions.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'github3/exceptions.py') 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 -- cgit v1.2.3-59-g8ed1b