// This rule specifies whether you have to provide
// a @throws tag for every parameter declared in the
// the method.
...
public class Foo
{
...
/**
* persist internal data to output stream
*
* @param stream medium to persist against
* @throws PersistException when data could
* not be persisted
*/
public void persist(OutputStream stream)
throws PersistException
{
...