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
1 changed files with 1 additions and 1 deletions

View File

@ -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 {