public final class IllegalThrowsCheck extends AbstractCheck
Checks that specified types are not declared to be thrown.
Declaring that a method throws java.lang.Error
or
java.lang.RuntimeException
is almost never acceptable.
illegalClassNames
- Specify throw class names to reject.
Type is java.lang.String[]
.
Default value is Error, RuntimeException, Throwable, java.lang.Error,
java.lang.RuntimeException, java.lang.Throwable
.
ignoredMethodNames
- Specify names of methods to ignore.
Type is java.lang.String[]
.
Default value is finalize
.
ignoreOverriddenMethods
- allow to ignore checking overridden methods
(marked with Override
or java.lang.Override
annotation).
Type is boolean
.
Default value is true
.
To configure the check:
<module name="IllegalThrows"/>
To configure the check rejecting throws NullPointerException from methods:
<module name="IllegalThrows"> <property name="illegalClassNames" value="NullPointerException"/> </module>
To configure the check ignoring method named "foo()":
<module name="IllegalThrows"> <property name="ignoredMethodNames" value="foo"/> </module>
To configure the check to warn on overridden methods:
<module name="IllegalThrows"> <property name="ignoreOverriddenMethods" value="false"/> </module>
Parent is com.puppycrawl.tools.checkstyle.TreeWalker
Violation Message Keys:
illegal.throw
AutomaticBean.OutputStreamOptions
Modifier and Type | Field and Description |
---|---|
static String |
MSG_KEY
A key is pointing to the warning message text in "messages.properties"
file.
|
Constructor and Description |
---|
IllegalThrowsCheck() |
Modifier and Type | Method and Description |
---|---|
int[] |
getAcceptableTokens()
The configurable token set.
|
int[] |
getDefaultTokens()
Returns the default token a check is interested in.
|
int[] |
getRequiredTokens()
The tokens that this check must be registered for.
|
void |
setIgnoredMethodNames(String... methodNames)
Setter to specify names of methods to ignore.
|
void |
setIgnoreOverriddenMethods(boolean ignoreOverriddenMethods)
Setter to allow to ignore checking overridden methods
(marked with
Override or java.lang.Override annotation). |
void |
setIllegalClassNames(String... classNames)
Setter to specify throw class names to reject.
|
void |
visitToken(DetailAST detailAST)
Called to process a token.
|
beginTree, clearMessages, destroy, finishTree, getFileContents, getLine, getLines, getMessages, getTabWidth, getTokenNames, init, isCommentNodesRequired, leaveToken, log, log, log, setFileContents, setTabWidth, setTokens
finishLocalSetup, getCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, setId, setSeverity
configure, contextualize, getConfiguration, setupChild
public static final String MSG_KEY
public IllegalThrowsCheck()
public void setIllegalClassNames(String... classNames)
classNames
- array of illegal exception classespublic int[] getDefaultTokens()
AbstractCheck
getDefaultTokens
in class AbstractCheck
TokenTypes
public int[] getRequiredTokens()
AbstractCheck
getRequiredTokens
in class AbstractCheck
TokenTypes
public int[] getAcceptableTokens()
AbstractCheck
getAcceptableTokens
in class AbstractCheck
TokenTypes
public void visitToken(DetailAST detailAST)
AbstractCheck
visitToken
in class AbstractCheck
detailAST
- the token to processpublic void setIgnoredMethodNames(String... methodNames)
methodNames
- array of ignored method namespublic void setIgnoreOverriddenMethods(boolean ignoreOverriddenMethods)
Override
or java.lang.Override
annotation).ignoreOverriddenMethods
- Check's property.Copyright © 2001–2020. All rights reserved.