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:
parent
8025900b3a
commit
2ada148fdb
|
@ -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"/>
|
||||
|
|
Loading…
Reference in New Issue