summaryrefslogtreecommitdiff
path: root/tempest/exceptions.py
diff options
context:
space:
mode:
authorMatthew Treinish <treinish@linux.vnet.ibm.com>2013-02-07 14:42:49 -0500
committerMatthew Treinish <treinish@linux.vnet.ibm.com>2013-02-12 09:46:59 -0500
commit72ea44266b9f14ae51674a6fe68fdb8fd1502b6b (patch)
treefe4e495daf47592e8b3556c96581288238f89d6a /tempest/exceptions.py
parent7e5a3ecc698846ef968c6c118264d9fef6d6a851 (diff)
downloadtempest-72ea44266b9f14ae51674a6fe68fdb8fd1502b6b.tar.gz
Add an images client.
This adds support for testing the glance API directly. We no longer need to use python-glanceclient to run the images tests. Fixes bug 1089765 Partially implements blueprint add-glance-api-v1-tests Change-Id: I404e43e2e6ffecb5131cdcc43df03b8da0e7f0f8
Diffstat (limited to 'tempest/exceptions.py')
-rw-r--r--tempest/exceptions.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tempest/exceptions.py b/tempest/exceptions.py
index 6b9ce7436..bcfc40b9a 100644
--- a/tempest/exceptions.py
+++ b/tempest/exceptions.py
@@ -112,6 +112,10 @@ class ComputeFault(TempestException):
message = "Got compute fault"
+class ImageFault(TempestException):
+ message = "Got image fault"
+
+
class IdentityError(TempestException):
message = "Got identity error"