Fix merge conflicts.
This commit is contained in:
parent
ab82568739
commit
9de7969d2b
7 changed files with 530 additions and 78 deletions
|
|
@ -238,6 +238,13 @@ class InvalidParameterValueError(EC2ClientError):
|
|||
.format(parameter_value))
|
||||
|
||||
|
||||
class InvalidParameterValueErrorTagNull(EC2ClientError):
|
||||
def __init__(self):
|
||||
super(InvalidParameterValueErrorTagNull, self).__init__(
|
||||
"InvalidParameterValue",
|
||||
"Tag value cannot be null. Use empty string instead.")
|
||||
|
||||
|
||||
class InvalidInternetGatewayIdError(EC2ClientError):
|
||||
def __init__(self, internet_gateway_id):
|
||||
super(InvalidInternetGatewayIdError, self).__init__(
|
||||
|
|
@ -262,6 +269,21 @@ class ResourceAlreadyAssociatedError(EC2ClientError):
|
|||
.format(resource_id))
|
||||
|
||||
|
||||
class TagLimitExceeded(EC2ClientError):
|
||||
def __init__(self):
|
||||
super(TagLimitExceeded, self).__init__(
|
||||
"TagLimitExceeded",
|
||||
"The maximum number of Tags for a resource has been reached.")
|
||||
|
||||
|
||||
class InvalidID(EC2ClientError):
|
||||
def __init__(self, resource_id):
|
||||
super(InvalidID, self).__init__(
|
||||
"InvalidID",
|
||||
"The ID '{0}' is not valid"
|
||||
.format(resource_id))
|
||||
|
||||
|
||||
ERROR_RESPONSE = u"""<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Response>
|
||||
<Errors>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue