implement elbv2 ResourceInUseError
This commit is contained in:
parent
77cf857e65
commit
04542dccc0
3 changed files with 33 additions and 2 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue