Esempio

public class ClassA {
void methodA () throws java.io.IOException {
}
}


Soluzione
Fornire le tag Javadoc @throws per ogni eccezione emessa nei metodi package-private.

public class ClassA {
/**
* @throws java.io.IOException
*/
void methodA () throws java.io.IOException {
}
}