ThrowsUncheckedException
Unchecked exceptions do not need to be declared in the method signature.

Severity
SUGGESTION

The problem

Effective Java 3rd Edition ยง74 says:

Use the Javadoc @throws tag to document each exception that a method can throw, but do not use the throws keyword on unchecked exceptions.

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("ThrowsUncheckedException") to the enclosing element.