mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
Do not swallow exception in Socks5BytestreamManager
This commit is contained in:
parent
6619372bb8
commit
49aa7ce21b
1 changed files with 1 additions and 1 deletions
|
@ -530,7 +530,7 @@ public final class Socks5BytestreamManager extends Manager implements Bytestream
|
|||
|
||||
}
|
||||
catch (TimeoutException e) {
|
||||
throw new IOException("Timeout while connecting to SOCKS5 proxy");
|
||||
throw new IOException("Timeout while connecting to SOCKS5 proxy", e);
|
||||
}
|
||||
finally {
|
||||
|
||||
|
|
Loading…
Reference in a new issue