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 9e0a087 + 80bc8fc commit 848a2b2Copy full SHA for 848a2b2
spring-messaging/src/main/java/org/springframework/messaging/MessagingException.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2002-2015 the original author or authors.
+ * Copyright 2002-2017 the original author or authors.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -66,4 +66,10 @@ public Message<?> getFailedMessage() {
66
return this.failedMessage;
67
}
68
69
+ @Override
70
+ public String toString() {
71
+ return super.toString() + (this.failedMessage == null ? ""
72
+ : (", failedMessage=" + this.failedMessage));
73
+ }
74
+
75
0 commit comments