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.
2 parents 01fd29f + 5df4db8 commit bfb7ad6Copy full SHA for bfb7ad6
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