Fix typo in exception message

This commit is contained in:
Sam Brannen 2015-04-21 18:00:34 +02:00
parent 713fc5c4ab
commit 8a1f9f8aa3
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class ApplicationListenerMethodTransactionalAdapter extends ApplicationListenerM
TransactionalEventListener annotation = AnnotationUtils
.findAnnotation(method, TransactionalEventListener.class);
if (annotation == null) {
throw new IllegalStateException("No TransactionalEventListener annotation found ou '" + method + "'");
throw new IllegalStateException("No TransactionalEventListener annotation found on '" + method + "'");
}
return annotation;
}