From 88532641d61be05d5d36186b8015a4b39dadff00 Mon Sep 17 00:00:00 2001 From: Anusha Ramineni Date: Tue, 24 Mar 2015 19:49:30 +0530 Subject: [PATCH] Fix exceptions Change-Id: I18fdb27c41f99702d2d39813118b943da6700aa8 --- proliantutils/exception.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/proliantutils/exception.py b/proliantutils/exception.py index 535f43d..e7e56a5 100644 --- a/proliantutils/exception.py +++ b/proliantutils/exception.py @@ -42,7 +42,7 @@ class IloClientInternalError(IloError): communicate properly with the iLO. """ def __init__(self, message, errorcode=None): - super(IloError, self).__init__(message) + super(IloClientInternalError, self).__init__(message) class IloCommandNotSupportedError(IloError): @@ -52,7 +52,7 @@ class IloCommandNotSupportedError(IloError): communicate properly with the iLO """ def __init__(self, message, errorcode=None): - super(IloError, self).__init__(message) + super(IloCommandNotSupportedError, self).__init__(message) class IloCommandNotSupportedInBiosError(IloCommandNotSupportedError): @@ -77,7 +77,7 @@ class IloLoginFailError(IloError): message = 'Authorization Failed' def __init__(self, message, errorcode=None): - super(IloError, self).__init__(message) + super(IloLoginFailError, self).__init__(message) class IloConnectionError(IloError):