diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-01-24 22:05:44 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-01-24 22:05:44 +0000 |
| commit | b463f0a87a0db872232d26fba915b29712faf7cd (patch) | |
| tree | 506886c44fe1b5cb9ae7ea3ddc59617db050adcf /nova | |
| parent | 611a2827762033f27e6f5d41c325810d92bc8635 (diff) | |
| parent | a3046e007f53b9b31528a2b35b2f000ae0441750 (diff) | |
Merge "Add nova.exception.InvalidRPCConnectionReuse."
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/exception.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nova/exception.py b/nova/exception.py index a60c82f71..42ec908d7 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -247,6 +247,10 @@ class InvalidCidr(Invalid): message = _("Invalid cidr %(cidr)s.") +class InvalidRPCConnectionReuse(Invalid): + message = _("Invalid reuse of an RPC connection.") + + # Cannot be templated as the error syntax varies. # msg needs to be constructed when raised. class InvalidParameterValue(Invalid): |
