Merge "Remove two exceptions already in neutron-lib"

This commit is contained in:
Jenkins 2016-04-20 01:47:49 +00:00 committed by Gerrit Code Review
commit b923b7a2c5

View File

@ -77,11 +77,6 @@ class DNSNameServersExhausted(e.BadRequest):
"The number of DNS nameservers exceeds the limit %(quota)s.")
class InvalidIpForNetwork(e.BadRequest):
message = _("IP address %(ip_address)s is not a valid IP "
"for any of the subnets on the specified network.")
class FlatNetworkInUse(e.InUse):
message = _("Unable to create the flat network. "
"Physical network %(physical_network)s is in use.")
@ -153,10 +148,6 @@ class ExtensionsNotFound(e.NotFound):
message = _("Extensions not found: %(extensions)s.")
class InvalidContentType(e.NeutronException):
message = _("Invalid content type %(content_type)s.")
class GatewayConflictWithAllocationPools(e.InUse):
message = _("Gateway ip %(ip_address)s conflicts with "
"allocation pool %(pool)s.")