Allow declaring subclasses in exceptions.

The eclipse plugin for checkstyle sometimes flagged this as errors.
Since we have decided to be explicit in the Javadoc, we have to allow
it.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1562756 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2014-01-30 09:37:31 +00:00
parent 8025900b3a
commit 2ada148fdb
1 changed files with 7 additions and 0 deletions

View File

@ -46,7 +46,14 @@
<!-- Require method javadocs, allow undeclared RTE -->
<module name="JavadocMethod">
<property name="allowUndeclaredRTE" value="true"/>
<property name="allowThrowsTagsForSubclasses" value="true"/>
</module>
<!-- Allow declaration of detailed exception set -->
<module name="RedundantThrows">
<property name="allowUnchecked" value="true"/>
<property name="allowSubclasses" value="true"/>
</module>
<!-- Require field javadoc -->
<module name="JavadocVariable"/>