Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update WebSocketClientWrapper.java
  • Loading branch information
sonologico authored Oct 21, 2022
commit 208d29a0e7077a63e11111d9b3d64edc75ccc99d
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ public WebSocketClientWrapper(final URI uri, final Proxy proxy, final WebSocketL
}
catch (final IOException e) {
throw new SSLException(e);
} catch (final NoSuchAlgorithmException e) {
throw new SSLException(e);
} catch (final KeyManagementException e) {
throw new SSLException(e);
}
Expand Down