History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEABKL-2796
Type: New Feature New Feature
Status: Open Open
Priority: Normal Normal
Assignee: Alexey Kudravtsev
Reporter: Michael Grey
Votes: 0
Watchers: 0
Available Workflow Actions

Mark as Stalled
Operations

If you were logged in you would be able to see more operations.
IDEA: Backlog

Add Catch Clause Enhancement

Created: 16 Feb 05 11:56   Updated: 16 Feb 05 19:28
Component/s: Editor. Intention Actions
Affects Version/s: None
Fix Version/s: None

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown


 Description  « Hide
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.



 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.