diff options
author | Garret Smith <[email protected]> | 2014-07-16 10:54:54 -0700 |
---|---|---|
committer | Garret Smith <[email protected]> | 2014-07-16 12:10:32 -0700 |
commit | 974725842d5cb5cc6a7ead3069978d05d04070f2 (patch) | |
tree | 666a4cc3353406bdb5420feab6b19088a00bdc63 /lib/jinterface | |
parent | 172e812c491680fbb175f56f7604d4098cdc9de4 (diff) | |
download | otp-974725842d5cb5cc6a7ead3069978d05d04070f2.tar.gz otp-974725842d5cb5cc6a7ead3069978d05d04070f2.tar.bz2 otp-974725842d5cb5cc6a7ead3069978d05d04070f2.zip |
Include the cause when raising a new IOException
Diffstat (limited to 'lib/jinterface')
-rw-r--r-- | lib/jinterface/java_src/com/ericsson/otp/erlang/AbstractConnection.java | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/jinterface/java_src/com/ericsson/otp/erlang/AbstractConnection.java b/lib/jinterface/java_src/com/ericsson/otp/erlang/AbstractConnection.java index 7aa30eef4a..85d303689f 100644 --- a/lib/jinterface/java_src/com/ericsson/otp/erlang/AbstractConnection.java +++ b/lib/jinterface/java_src/com/ericsson/otp/erlang/AbstractConnection.java @@ -959,7 +959,9 @@ public abstract class AbstractConnection extends Thread { } catch (final Exception e) { final String nn = peer.node(); close(); - throw new IOException("Error accepting connection from " + nn); + IOException ioe = new IOException("Error accepting connection from " + nn); + ioe.initCause(e); + throw ioe; } if (traceLevel >= handshakeThreshold) { System.out.println("<- MD5 ACCEPTED " + peer.host()); @@ -990,7 +992,9 @@ public abstract class AbstractConnection extends Thread { throw ae; } catch (final Exception e) { close(); - throw new IOException("Cannot connect to peer node"); + IOException ioe = new IOException("Cannot connect to peer node"); + ioe.initCause(e); + throw ioe; } } |