throws DownloadFailedException
{
String sPath = "";
try {
File file = new File(sDir, m_sDirName.toLowerCase() + ".pbn");
PbnFile pbnFile = new PbnFile();
pbnFile.addDeals(aDeal);
sPath = file.getAbsolutePath();
pbnFile.save(file.getAbsolutePath());
}
catch (IOException ioe) {
throw new DownloadFailedException(ioe, m_ow, !m_bSilent);
}
return sPath;