Example
public class
ClassA {
private void
methodA ()
throws
java.io.IOException {
}
}
Solution
Provide
@throws
Javadoc tags for each thrown exception in
public
methods.
public class
ClassA {
/**
* @throws java.io.IOException
*/
private void
methodA ()
throws
java.io.IOException {
}
}