diff options
author | Qin Zhao <chaochin@gmail.com> | 2015-03-06 17:20:06 +0800 |
---|---|---|
committer | Qin Zhao <chaochin@gmail.com> | 2015-05-11 06:08:16 +0000 |
commit | df93b2716774ec1d044e65bbbd037fdf56313bc7 (patch) | |
tree | 45161e26882c06b6893969c327dfa25308e33ee9 /neutronclient/common/exceptions.py | |
parent | 6c512446b13cdb4ab4191e940dda8d5b2c976e52 (diff) | |
download | python-neutronclient-df93b2716774ec1d044e65bbbd037fdf56313bc7.tar.gz |
Add InvalidIpForSubnetClient exception
A new Neutron exception type, InvalidIpForSubnetClient, is added by
https://review.openstack.org/#/c/121767/ . Need to let Neutron client to
identify this new exception type.
Change-Id: Ib4f0d7af3807f96463c82d1d2a1e53b56081facc
Partial-Bug: 1369871
Diffstat (limited to 'neutronclient/common/exceptions.py')
-rw-r--r-- | neutronclient/common/exceptions.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/neutronclient/common/exceptions.py b/neutronclient/common/exceptions.py index 9728fbd..da5e195 100644 --- a/neutronclient/common/exceptions.py +++ b/neutronclient/common/exceptions.py @@ -144,6 +144,10 @@ class InvalidIpForNetworkClient(BadRequest): pass +class InvalidIpForSubnetClient(BadRequest): + pass + + class OverQuotaClient(Conflict): pass |