implement elbv2 ResourceInUseError

This commit is contained in:
Jack Danger 2017-10-02 12:35:52 -07:00
commit 04542dccc0
3 changed files with 33 additions and 2 deletions

View file

@ -152,6 +152,13 @@ class InvalidDescribeRulesRequest(ELBClientError):
)
class ResourceInUseError(ELBClientError):
def __init__(self, msg="A specified resource is in use"):
super(ResourceInUseError, self).__init__(
"ResourceInUse", msg)
class RuleNotFoundError(ELBClientError):
def __init__(self):