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