Skip to content

Commit 9d93b54

Browse files
committed
fixed assertion message
1 parent ede8482 commit 9d93b54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

org.springframework.transaction/src/main/java/org/springframework/dao/annotation/PersistenceExceptionTranslationPostProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public class PersistenceExceptionTranslationPostProcessor extends ProxyConfig
8686
* @param repositoryAnnotationType the desired annotation type
8787
*/
8888
public void setRepositoryAnnotationType(Class<? extends Annotation> repositoryAnnotationType) {
89-
Assert.notNull(repositoryAnnotationType, "'requiredAnnotationType' must not be null");
89+
Assert.notNull(repositoryAnnotationType, "'repositoryAnnotationType' must not be null");
9090
this.repositoryAnnotationType = repositoryAnnotationType;
9191
}
9292

0 commit comments

Comments
 (0)