Skip to content

Commit 8a1f9f8

Browse files
committed
Fix typo in exception message
1 parent 713fc5c commit 8a1f9f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-tx/src/main/java/org/springframework/transaction/event/ApplicationListenerMethodTransactionalAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ static TransactionalEventListener findAnnotation(Method method) {
8383
TransactionalEventListener annotation = AnnotationUtils
8484
.findAnnotation(method, TransactionalEventListener.class);
8585
if (annotation == null) {
86-
throw new IllegalStateException("No TransactionalEventListener annotation found ou '" + method + "'");
86+
throw new IllegalStateException("No TransactionalEventListener annotation found on '" + method + "'");
8787
}
8888
return annotation;
8989
}

0 commit comments

Comments
 (0)