Replacing AutoservInstallError with a slightly different version. Signed-off-by: John Admanski <[email protected]> git-svn-id: http://test.kernel.org/svn/autotest/trunk@3954 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/common_lib/error.py b/client/common_lib/error.py index 9e0002d..2fa3a52 100644 --- a/client/common_lib/error.py +++ b/client/common_lib/error.py
@@ -185,11 +185,6 @@ pass -class AutoservInstallError(Exception): - """Autoserv failed in installing autotest on a client machine""" - pass - - class AutoservSSHTimeout(AutoservError): """SSH experienced a connection timeout""" pass @@ -282,6 +277,11 @@ pass +class AutoservInstallError(AutoservError): + """Error occured while installing autotest on a host""" + pass + + # packaging system errors class PackagingError(AutotestError):