service key server wip

This commit is contained in:
Jimmy Zelinskie 2016-03-16 15:49:25 -04:00 committed by Jimmy Zelinskie
parent fe5787ac28
commit 499bb16306
4 changed files with 167 additions and 13 deletions

View file

@ -76,6 +76,10 @@ class InvalidManifestException(DataModelException):
pass
class ServiceKeyDoesNotExist(DataModelException):
pass
class TooManyLoginAttemptsException(Exception):
def __init__(self, message, retry_after):
super(TooManyLoginAttemptsException, self).__init__(message)