diff options
Diffstat (limited to 'nova/exception.py')
-rw-r--r-- | nova/exception.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nova/exception.py b/nova/exception.py index a821e9c6b..6d931588d 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -1064,6 +1064,11 @@ class InstanceNotFound(NotFound): message = _("Instance %(instance_id)s could not be found.") +class InstanceInfoCacheNotFound(NotFound): + message = _("Info cache for instance %(instance_uuid)s could not be " + "found.") + + class NodeNotFound(NotFound): message = _("Node %(node_id)s could not be found.") |