]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
change NetworkVxlanPortRangeError to base NeutronException
authorYong Sheng Gong <gongysh@unitedstack.com>
Mon, 21 Oct 2013 15:34:53 +0000 (23:34 +0800)
committerYong Sheng Gong <gongysh@unitedstack.com>
Mon, 21 Oct 2013 15:34:53 +0000 (23:34 +0800)
Closes-Bug #1242756

Change-Id: I902fa12795cda5ca70defaeb3b6959e3a0824565

neutron/common/exceptions.py

index 7b026473324fb643948eecf0a8bbbc59c57cbbcc..cb004a9cf6f4e97983d2f4c0a90c401e4c3937f4 100644 (file)
@@ -299,5 +299,5 @@ class NetworkVlanRangeError(NeutronException):
         super(NetworkVlanRangeError, self).__init__(**kwargs)
 
 
-class NetworkVxlanPortRangeError(object):
+class NetworkVxlanPortRangeError(NeutronException):
     message = _("Invalid network VXLAN port range: '%(vxlan_range)s'")