in src/main/java/org/apache/maven/plugin/docck/reports/DocumentationReporter.java [74:86]
public boolean hasErrors()
{
for ( DocumentationReport report : reports )
{
if ( report.getType() == DocumentationReport.TYPE_ERROR )
{
// first occurrence will do
return true;
}
}
return false;
}