fixed assertion message

This commit is contained in:
Juergen Hoeller 2011-12-09 16:01:06 +00:00
parent ede8482f81
commit 9d93b5429f
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ public class PersistenceExceptionTranslationPostProcessor extends ProxyConfig
* @param repositoryAnnotationType the desired annotation type * @param repositoryAnnotationType the desired annotation type
*/ */
public void setRepositoryAnnotationType(Class<? extends Annotation> repositoryAnnotationType) { public void setRepositoryAnnotationType(Class<? extends Annotation> repositoryAnnotationType) {
Assert.notNull(repositoryAnnotationType, "'requiredAnnotationType' must not be null"); Assert.notNull(repositoryAnnotationType, "'repositoryAnnotationType' must not be null");
this.repositoryAnnotationType = repositoryAnnotationType; this.repositoryAnnotationType = repositoryAnnotationType;
} }