Browse Source

Add parameter to exception message format.

Closes: #2956
Original pull request: #2958
3.0.x
mawen12 2 years ago committed by Mark Paluch
parent
commit
c9a2dcc179
No known key found for this signature in database
GPG Key ID: 4406B84C1661DCD1
  1. 2
      src/main/java/org/springframework/data/config/ConfigurationUtils.java

2
src/main/java/org/springframework/data/config/ConfigurationUtils.java

@ -97,7 +97,7 @@ public interface ConfigurationUtils { @@ -97,7 +97,7 @@ public interface ConfigurationUtils {
if (result == null) {
throw new IllegalArgumentException(
String.format("Could not obtain required bean class name from BeanDefinition", beanDefinition));
String.format("Could not obtain required bean class name from BeanDefinition %s", beanDefinition));
}
return result;

Loading…
Cancel
Save