From 426d031f4c2dcfe0210c857140aa7789c75c2099 Mon Sep 17 00:00:00 2001 From: "Andrea Frittoli (andreaf)" Date: Sun, 22 Mar 2015 15:51:04 +0000 Subject: 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 --- tempest_lib/exceptions.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 -- cgit v1.2.1