diff --git a/spring-integration-http/src/main/java/org/springframework/integration/http/inbound/HttpRequestHandlingEndpointSupport.java b/spring-integration-http/src/main/java/org/springframework/integration/http/inbound/HttpRequestHandlingEndpointSupport.java index 87c43e86b8..6db3e5885a 100644 --- a/spring-integration-http/src/main/java/org/springframework/integration/http/inbound/HttpRequestHandlingEndpointSupport.java +++ b/spring-integration-http/src/main/java/org/springframework/integration/http/inbound/HttpRequestHandlingEndpointSupport.java @@ -501,7 +501,7 @@ public abstract class HttpRequestHandlingEndpointSupport extends BaseHttpInbound return converter.read((Class) expectedType, request); } } - throw new MessagingException( // NOSONAR might be null; see comment above. + throw new MessagingException(// NOSONAR might be null; see comment above. "Could not convert request: no suitable HttpMessageConverter found for expected type [" + expectedType != null ? expectedType.getName() : "null" + "] and content type [" + contentType + "]");