diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-05-24 19:38:59 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-05-24 19:38:59 +0000 |
commit | ba894e71820a2abc9bd6a590afea0f5691796ad0 (patch) | |
tree | bada400ed943371f79fab79db4569f53fb046fed /nova/exception.py | |
parent | c08cf464e3a81d48f3017e36c2209800f28c14a7 (diff) | |
parent | 7238438ef218d79a31acb07ea004fca8c2e78798 (diff) | |
download | nova-ba894e71820a2abc9bd6a590afea0f5691796ad0.tar.gz nova-ba894e71820a2abc9bd6a590afea0f5691796ad0.tar.xz nova-ba894e71820a2abc9bd6a590afea0f5691796ad0.zip |
Merge "Fix tests for sqlalchemy utils"
Diffstat (limited to 'nova/exception.py')
-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 6e5e9ce90..01469f828 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -1199,6 +1199,10 @@ class RescheduledException(NovaException): "%(reason)s") +class ShadowTableExists(NovaException): + message = _("Shadow table with name %(name)s already exists.") + + class InstanceFaultRollback(NovaException): def __init__(self, inner_exception=None): message = _("Instance rollback performed due to: %s") |