diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-06-10 18:09:23 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-06-10 18:09:23 +0000 |
commit | 08cfd77a3658380df71f6eabbfa765b5ffcae053 (patch) | |
tree | cc9246a20d9dc23f6a1e155ca592360e72bfdaf8 /nova/exception.py | |
parent | a527229c88cfd40b145e4d45a05a675aa127ea1e (diff) | |
parent | d5ae8d5667fee22ba4df4feea53224874a19d167 (diff) | |
download | nova-08cfd77a3658380df71f6eabbfa765b5ffcae053.tar.gz nova-08cfd77a3658380df71f6eabbfa765b5ffcae053.tar.xz nova-08cfd77a3658380df71f6eabbfa765b5ffcae053.zip |
Merge "Adds check that the core V3 API is loaded"
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 487eaae8e..88c038201 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -1220,3 +1220,7 @@ class OrphanedObjectError(NovaException): class IncompatibleObjectVersion(NovaException): message = _('Version %(objver)s of %(objname)s is not supported') + + +class CoreAPIMissing(NovaException): + message = _("Core API extensions are missing: %(missing_apis)s") |