public AnnotationTypeMismatchException(Method element, String foundType)Constructs an instance for the given type element and the type found.
super(Messages.getString("annotation.1", element, foundType)); //$NON-NLS-1$
this.element = element;
this.foundType = foundType;
|