summaryrefslogtreecommitdiffstats
path: root/nova/exception.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-09-20 02:13:30 +0000
committerGerrit Code Review <review@openstack.org>2012-09-20 02:13:30 +0000
commitc2ff9c998ab848aa015d257fe02f2429faf752d6 (patch)
tree86a0a260a55ebf6f0a0c062528ff2ba97fdc602b /nova/exception.py
parent13079fbd8c56ff374cdb989274c23bd02e46a137 (diff)
parent09b903ed5e3306cf200328f41ce6df371923d03d (diff)
Merge "Fix marker pagination for /servers"
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 c9f339e6c..4de43c366 100644
--- a/nova/exception.py
+++ b/nova/exception.py
@@ -1067,6 +1067,10 @@ class InstanceNotFound(NotFound):
message = _("Instance %(instance_id)s could not be found.")
+class MarkerNotFound(NotFound):
+ message = _("Marker %(marker)s could not be found.")
+
+
class InvalidInstanceIDMalformed(Invalid):
message = _("Invalid id: %(val)s (expecting \"i-...\").")