We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01fd29f commit 5df4db8Copy full SHA for 5df4db8
src/com/rabbitmq/client/impl/AMQChannel.java
@@ -124,7 +124,8 @@ public static IOException wrap(ShutdownSignalException ex) {
124
}
125
126
public static IOException wrap(ShutdownSignalException ex, String message) {
127
- IOException ioe = new IOException(message, ex);
+ IOException ioe = new IOException(message);
128
+ ioe.initCause(ex);
129
return ioe;
130
131
0 commit comments