try {
InputStream in = _ftpClient.retrieveFileStream(fileName);
if (in == null)
throw new FileNotFoundException(_ftpClient.getReplyString());
}catch (IOException e)
{
close();
throw new RBException(FTP.class, 1004, e);
}
I would like to have a passive intention to add a catch clause for the FileNotFoundException. Although it is already handled by the IOException (thus no active intention) I want to handle that one differently.