Package org.sonar.python.api.tree
Interface ExceptClause
-
- All Superinterfaces:
Tree
- All Known Implementing Classes:
ExceptClauseImpl
public interface ExceptClause extends Tree
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TokenasKeyword()StatementListbody()TokencommaToken()Expressionexception()ExpressionexceptionInstance()TokenexceptKeyword()-
Methods inherited from interface org.sonar.python.api.tree.Tree
accept, ancestors, astNode, children, descendants, descendants, firstToken, getKind, is, lastToken, parent
-
-
-
-
Method Detail
-
exceptKeyword
Token exceptKeyword()
-
body
StatementList body()
-
asKeyword
@CheckForNull Token asKeyword()
-
commaToken
@CheckForNull Token commaToken()
-
exception
@CheckForNull Expression exception()
-
exceptionInstance
@CheckForNull Expression exceptionInstance()
-
-