Handle IntegrityError in tag update code

Fixes 4938537230/
This commit is contained in:
Joseph Schorr 2017-02-21 12:51:39 -05:00
parent 9db20ff961
commit d29d2da1ca
2 changed files with 7 additions and 1 deletions

View file

@ -96,6 +96,9 @@ class ServiceNameInvalid(DataModelException):
class TagAlreadyCreatedException(DataModelException):
pass
class StaleTagException(DataModelException):
pass
class TooManyLoginAttemptsException(Exception):
def __init__(self, message, retry_after):