Esempio
public class
ClassA {
public void
methodA ()
throws
java.io.IOException {
}
}
Soluzione
Fornire le tag Javadoc
@throws
per ogni eccezione emessa nei metodi
protected
.
public class
ClassA {
/**
* @throws java.io.IOException
*/
protected void
methodA ()
throws
java.io.IOException {
}
}