summaryrefslogtreecommitdiffstats
path: root/nova/exception.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-06-10 18:09:23 +0000
committerGerrit Code Review <review@openstack.org>2013-06-10 18:09:23 +0000
commit08cfd77a3658380df71f6eabbfa765b5ffcae053 (patch)
treecc9246a20d9dc23f6a1e155ca592360e72bfdaf8 /nova/exception.py
parenta527229c88cfd40b145e4d45a05a675aa127ea1e (diff)
parentd5ae8d5667fee22ba4df4feea53224874a19d167 (diff)
downloadnova-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.py4
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")