Index: modules/annotation/src/main/java/java/lang/annotation/IncompleteAnnotationException.java =================================================================== --- modules/annotation/src/main/java/java/lang/annotation/IncompleteAnnotationException.java (revision 489974) +++ modules/annotation/src/main/java/java/lang/annotation/IncompleteAnnotationException.java (working copy) @@ -47,7 +47,7 @@ */ public IncompleteAnnotationException( Class annotationType, String elementName) { - super(Messages.getString("annotation.0", elementName, annotationType)); //$NON-NLS-1$ + super(Messages.getString("annotation.0", elementName, annotationType.getName())); //$NON-NLS-1$ this.annotationType = annotationType; this.elementName = elementName; }