diff --git a/spring-integration-core/src/main/java/org/springframework/integration/handler/LambdaMessageProcessor.java b/spring-integration-core/src/main/java/org/springframework/integration/handler/LambdaMessageProcessor.java index d53443942d..e48118b434 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/handler/LambdaMessageProcessor.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/handler/LambdaMessageProcessor.java @@ -104,7 +104,7 @@ public class LambdaMessageProcessor implements MessageProcessor, BeanFac "An example of when this often occurs is if the lambda is configured to " + "receive a Message argument.", e.getCause()); } - throw new IllegalStateException( // NOSONAR lost stack trace + throw new IllegalStateException(// NOSONAR lost stack trace "Could not invoke the method '" + this.method + "'", e.getCause()); } catch (Exception e) {