Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve error handling in InputStream.close() for SFTP channels #331

Merged
merged 1 commit into from
May 25, 2023
Merged

Improve error handling in InputStream.close() for SFTP channels #331

merged 1 commit into from
May 25, 2023

Conversation

stsiano
Copy link
Contributor

@stsiano stsiano commented May 24, 2023

Fixes #330

} catch (Exception e) {
throw new IOException("error");
throw new IOException(e.toString(), e);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would suggest doing it like this instead:

if (e instanceof IOException)
  throw (IOException) e;
throw new IOException(e.toString(), e);

Copy link
Contributor Author

@stsiano stsiano May 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I copied this particular code block from another part of the same file (line 826).

Sonar proposes to do this the way I did this
https://rules.sonarsource.com/java/RSPEC-1193

In the end the code is equivalent, so if you care about it, I can also change the pull request.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I see that now, apologies.

} catch (Exception e) {
throw new IOException("error");
throw new IOException(e.toString(), e);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I see that now, apologies.

@mwiede mwiede merged commit 9c93955 into mwiede:master May 25, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Improve error handling in InputStream.close() for SFTP channels
3 participants