FTPClient.disconnect() shouldn't throw IOException
--------------------------------------------------

                 Key: NET-278
                 URL: https://issues.apache.org/jira/browse/NET-278
             Project: Commons Net
          Issue Type: Improvement
    Affects Versions: 2.0
         Environment: All
            Reporter: Raffaele Sgarro
            Priority: Minor


FTPClient.disconnect() shouldn't throw IOExceptions because it is typically 
placed in a finally block and it doesn't make much sense to
try {
client.disconnect()
} catch (IOException e) {
// You can't actually do anything
}
What is the purpose of such an exception if nobody can use it? There's nothing 
we can do if the client couldn't disconnect... You always usa a catch block 
with a /*do nothing*/ in your samples, so I think it's only an elegant thing to 
have a try block in a finally block...

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to