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 af3bd41 commit 24c3013Copy full SHA for 24c3013
src/com/rabbitmq/client/impl/UnknownChannelException.java
@@ -31,15 +31,16 @@
31
32
package com.rabbitmq.client.impl;
33
34
-class UnknownChannelException extends RuntimeException{
+class UnknownChannelException extends RuntimeException {
35
private final int channelNumber;
36
-
37
- public UnknownChannelException(int channelNumber){
38
- super("Unknown channel number " + channelNumber + " for this this connection");
+
+ public UnknownChannelException(int channelNumber) {
+ super("Unknown channel number " + channelNumber);
39
this.channelNumber = channelNumber;
40
}
41
42
- public int getChannelNumber(){
+ public int getChannelNumber() {
43
return channelNumber;
44
45
46
0 commit comments