Skip to content

Commit 3cf806a

Browse files
committed
Merge pull request #24266 from PascalSchumacher
* pr/24266: Add missing space in AopConfigException message Closes gh-24266
2 parents 9c17eb5 + e7d4896 commit 3cf806a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-aop/src/main/java/org/springframework/aop/framework/ProxyFactoryBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ private Advisor namedBeanToAdvisor(Object next) {
600600
// We expected this to be an Advisor or Advice,
601601
// but it wasn't. This is a configuration error.
602602
throw new AopConfigException("Unknown advisor type " + next.getClass() +
603-
"; Can only include Advisor or Advice type beans in interceptorNames chain except for last entry," +
603+
"; Can only include Advisor or Advice type beans in interceptorNames chain except for last entry, " +
604604
"which may also be target or TargetSource", ex);
605605
}
606606
}

0 commit comments

Comments
 (0)