diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-02-21 00:29:50 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-02-21 00:29:50 +0000 |
commit | 31347223a655f33cff6b51916eba0ea96da7a4e3 (patch) | |
tree | 622e0c4da24c64876c85fdb6e6dc1b3f49a9f7ea /nova/exception.py | |
parent | 20422f46e8a506a751844c94f0f7b25bf8220e2b (diff) | |
parent | 48439b98a1a7ac2dded34c8899918773f70667f2 (diff) | |
download | nova-31347223a655f33cff6b51916eba0ea96da7a4e3.tar.gz nova-31347223a655f33cff6b51916eba0ea96da7a4e3.tar.xz nova-31347223a655f33cff6b51916eba0ea96da7a4e3.zip |
Merge "Wait for baremetal deploy inside driver.spawn"
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 13e007ecf..6d876f5b4 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -335,6 +335,10 @@ class InstanceTerminationFailure(Invalid): message = _("Failed to terminate instance") + ": %(reason)s" +class InstanceDeployFailure(Invalid): + message = _("Failed to deploy instance") + ": %(reason)s" + + class ServiceUnavailable(Invalid): message = _("Service is unavailable at this time.") |