From ddc8c833684ff0db65553b09b87eed7b80c7075d Mon Sep 17 00:00:00 2001 From: Dolph Mathews Date: Fri, 9 Nov 2012 08:32:18 -0600 Subject: v3 Identity - v3 identity tests (bug 1023930) - v3 identity implementation (bug 1023937) Change-Id: Ic46575afe9760d9da85e262d0cf063ea002d9dcd --- keystone/exception.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'keystone/exception.py') diff --git a/keystone/exception.py b/keystone/exception.py index cc61a632..4b9721cf 100644 --- a/keystone/exception.py +++ b/keystone/exception.py @@ -95,10 +95,18 @@ class ServiceNotFound(NotFound): """Could not find service: %(service_id)s""" +class DomainNotFound(NotFound): + """Could not find domain: %(domain_id)s""" + + class TenantNotFound(NotFound): """Could not find tenant: %(tenant_id)s""" +class ProjectNotFound(TenantNotFound): + """Could not find project: %(project_id)s""" + + class TokenNotFound(NotFound): """Could not find token: %(token_id)s""" -- cgit