From 9d93b5429f3291fb4484a7f504319e988a0a2664 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Fri, 9 Dec 2011 16:01:06 +0000 Subject: [PATCH] fixed assertion message --- .../PersistenceExceptionTranslationPostProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.springframework.transaction/src/main/java/org/springframework/dao/annotation/PersistenceExceptionTranslationPostProcessor.java b/org.springframework.transaction/src/main/java/org/springframework/dao/annotation/PersistenceExceptionTranslationPostProcessor.java index 6f25b69a79..c4ee41ee53 100644 --- a/org.springframework.transaction/src/main/java/org/springframework/dao/annotation/PersistenceExceptionTranslationPostProcessor.java +++ b/org.springframework.transaction/src/main/java/org/springframework/dao/annotation/PersistenceExceptionTranslationPostProcessor.java @@ -86,7 +86,7 @@ public class PersistenceExceptionTranslationPostProcessor extends ProxyConfig * @param repositoryAnnotationType the desired annotation type */ public void setRepositoryAnnotationType(Class repositoryAnnotationType) { - Assert.notNull(repositoryAnnotationType, "'requiredAnnotationType' must not be null"); + Assert.notNull(repositoryAnnotationType, "'repositoryAnnotationType' must not be null"); this.repositoryAnnotationType = repositoryAnnotationType; }