1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-13 07:04:49 +02:00

Do not swallow exception in Socks5BytestreamManager

This commit is contained in:
Florian Schmaus 2019-06-02 10:41:27 +02:00
parent 6619372bb8
commit 49aa7ce21b

View file

@ -530,7 +530,7 @@ public final class Socks5BytestreamManager extends Manager implements Bytestream
} }
catch (TimeoutException e) { catch (TimeoutException e) {
throw new IOException("Timeout while connecting to SOCKS5 proxy"); throw new IOException("Timeout while connecting to SOCKS5 proxy", e);
} }
finally { finally {