This Javadoc tag isn't being recognised by the Javadoc parser. This can happen very easily if the tag is malformed in some way.

Common cases for {@link tags include:

Common cases include, for {@code tags:

Unmatched curly braces can be particularly hard to spot, e.g.:

/**
 * Should be used like:
 *
 * <pre>{@code
 *   Frobnicator frobnicator = new Frobnicator() {
 * }</pre>
 */
interface Frobnicator {}

Which should be:

/**
 * Should be used like:
 *
 * <pre>{@code
 *   Frobnicator frobnicator = new Frobnicator() {
 *   };
 * }</pre>
 */
interface Frobnicator {}

Suppression

Suppress by applying @SuppressWarnings("UnrecognisedJavadocTag") to the element being documented.