diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-01-09 18:05:53 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-01-09 18:05:53 +0000 |
commit | 2fa9d17d2382051379cb4575f4a43d11b120ba85 (patch) | |
tree | 53f141192b1dc9229407710983f958a72fcb6067 /nova/exception.py | |
parent | 8b83990c12e4dc03aa599dd5e68ce91a9cab4eb7 (diff) | |
parent | 5e520fe223f6dba11717231912b0c00e3e4b1129 (diff) | |
download | nova-2fa9d17d2382051379cb4575f4a43d11b120ba85.tar.gz nova-2fa9d17d2382051379cb4575f4a43d11b120ba85.tar.xz nova-2fa9d17d2382051379cb4575f4a43d11b120ba85.zip |
Merge "New instance_actions and events table, model, and api"
Diffstat (limited to 'nova/exception.py')
-rw-r--r-- | nova/exception.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/nova/exception.py b/nova/exception.py index 9507a0088..7ec23d32d 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -1074,6 +1074,15 @@ class UnexpectedTaskStateError(NovaException): "the actual state is %(actual)s") +class InstanceActionNotFound(NovaException): + message = _("Action for request_id %(request_id)s on instance" + " %(instance_uuid)s not found") + + +class InstanceActionEventNotFound(NovaException): + message = _("Event %(event)s not found for action id %(action_id)s") + + class CryptoCAFileNotFound(FileNotFound): message = _("The CA file for %(project)s could not be found") |