LOG.debug("File transfer completed : " + outFilename);
}
catch (IOException e)
{
e.printStackTrace();
throw new PipeIOException(e);
}
catch (InterruptedException e)
{
e.printStackTrace();
throw new PipeIOException(e.getCause());
}
catch (ExecutionException e)
{
e.printStackTrace();
throw new PipeIOException(e.getCause());
}
}