summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Frittoli (andreaf) <andrea.frittoli@hp.com>2015-03-22 15:51:04 +0000
committerAndrea Frittoli (andreaf) <andrea.frittoli@hp.com>2015-03-22 15:51:04 +0000
commit426d031f4c2dcfe0210c857140aa7789c75c2099 (patch)
treec6df7900ea4250360c63220bc70e213689bf8614
parent5e02b8b6e49244659c88f9f9b4cb6789d820e559 (diff)
downloadtempest-lib-426d031f4c2dcfe0210c857140aa7789c75c2099.tar.gz
Add InvalidCredentials to tempest-lib
This exception is used in tempest-lib and should have been migrated as part of auth.py. Adding it now. Change-Id: I4eea69260a7492e5d1a2ab3a7418b7d8bbea81db
-rw-r--r--tempest_lib/exceptions.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tempest_lib/exceptions.py b/tempest_lib/exceptions.py
index 2ceef3e..ba368a5 100644
--- a/tempest_lib/exceptions.py
+++ b/tempest_lib/exceptions.py
@@ -150,4 +150,8 @@ class IdentityError(TempestException):
class EndpointNotFound(TempestException):
- message = "Endpoint not found" \ No newline at end of file
+ message = "Endpoint not found"
+
+
+class InvalidCredentials(TempestException):
+ message = "Invalid Credentials" \ No newline at end of file