Issue#35 Renamed exception

This commit is contained in:
Didier Clermonté 2016-06-30 23:09:25 +02:00
parent 7db3a7dca4
commit efc45c07ea
1 changed files with 8 additions and 8 deletions

View File

@ -104,13 +104,13 @@ public class SibaManager
SibaUtils.createMD5File(result, target + "/" + outputFileNameWithoutExtension + ".tgz.md5");
}
}
catch (IOException ioExceptionBackup)
catch (IOException exception)
{
throw new SibaException(BUNDLE.getString("ioExceptionBackup.text"), ioExceptionBackup); //$NON-NLS-1$
throw new SibaException(BUNDLE.getString("ioExceptionBackup.text"), exception); //$NON-NLS-1$
}
catch (NoSuchAlgorithmException noSuchAlgorithmException)
catch (NoSuchAlgorithmException exception)
{
throw new SibaException(BUNDLE.getString("noSuchAlgorithm.text"), noSuchAlgorithmException); //$NON-NLS-1$
throw new SibaException(BUNDLE.getString("noSuchAlgorithm.text"), exception); //$NON-NLS-1$
}
finally
{
@ -145,13 +145,13 @@ public class SibaManager
result = false;
}
}
catch (IOException ioExceptionCheck)
catch (IOException exception)
{
throw new SibaException(BUNDLE.getString("ioExceptionCheck.text"), ioExceptionCheck); //$NON-NLS-1$
throw new SibaException(BUNDLE.getString("ioExceptionCheck.text"), exception); //$NON-NLS-1$
}
catch (NoSuchAlgorithmException noSuchAlgorithmException)
catch (NoSuchAlgorithmException exception)
{
throw new SibaException(BUNDLE.getString("noSuchAlgorithm.text"), noSuchAlgorithmException); //$NON-NLS-1$
throw new SibaException(BUNDLE.getString("noSuchAlgorithm.text"), exception); //$NON-NLS-1$
}
//