diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-03-14 22:58:38 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-03-14 22:58:38 +0000 |
commit | 9b7ba0a067dc1c4e45e22c122336b07c17ee88bb (patch) | |
tree | 27eba808bc62aeabff0c91413be39977c33e9a14 /nova/exception.py | |
parent | a95b62b51c55541e0c856de01e78bb9f49bf73a7 (diff) | |
parent | d63bd8d692a9eb16caa818101cdbb3358f6b4681 (diff) | |
download | nova-9b7ba0a067dc1c4e45e22c122336b07c17ee88bb.tar.gz nova-9b7ba0a067dc1c4e45e22c122336b07c17ee88bb.tar.xz nova-9b7ba0a067dc1c4e45e22c122336b07c17ee88bb.zip |
Merge "Don't include traceback when wrapping exceptions"
Diffstat (limited to 'nova/exception.py')
-rw-r--r-- | nova/exception.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nova/exception.py b/nova/exception.py index 046df24c9..3db724fa9 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -388,6 +388,7 @@ class InvalidDevicePath(Invalid): class DevicePathInUse(Invalid): message = _("The supplied device path (%(path)s) is in use.") + code = 409 class DeviceIsBusy(Invalid): |