Skip to content

Commit

Permalink
New DailyLimitExceededException
Browse files Browse the repository at this point in the history
  • Loading branch information
czervenka committed Jul 5, 2013
1 parent 5841c69 commit f711e62
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions gapi/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ def __str__(self):
class NotFoundException(GoogleApiHttpException):
pass

class DailyLimnitExceededException(GoogleApiHttpException):
def __init__(self, result, url):
self.url = url
super(self.__class__, self).__init__(result)

class InvalidGrantException(GoogleApiHttpException):

Expand Down

0 comments on commit f711e62

Please sign in to comment.