Ejemplo
public class
ClassA {
/**
* @exception java.io.IOException
*/
public void
methodA ()
throws
java.io.IOException {
}
}
Solución
Utilice etiquetas de Javadoc
@throws
para cada excepción emitida en lugar de etiquetas
@exception
.
public class
ClassA {
/**
* @throws java.io.IOException
*/
public void
methodA ()
throws
java.io.IOException {
}
}