Merge pull request #1284 from garyrussell:SPR-15091

* pr/1284:
  Implement MessagingException.toString()
This commit is contained in:
Stephane Nicoll 2017-01-05 10:25:31 +01:00
commit 848a2b2ef8
1 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2015 the original author or authors.
* Copyright 2002-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -66,4 +66,10 @@ public class MessagingException extends NestedRuntimeException {
return this.failedMessage;
}
@Override
public String toString() {
return super.toString() + (this.failedMessage == null ? ""
: (", failedMessage=" + this.failedMessage));
}
}