} catch (IOException ioe) {
errorList.add(UtilProperties.getMessage(resource, "CommonFtpProblemWithTransfer", UtilMisc.toMap("errorString", ioe.getMessage()), locale));
} finally {
if (ftp.isConnected()) {
try {
ftp.disconnect();
} catch (IOException dce) {
Debug.logWarning(dce, "[getFile] Problem with FTP disconnect", module);
}
}
}