Interface TryStatement
- All Known Implementing Classes:
TryStatementImpl
try:
body()
exceptClauses()
elseClause()
finallyClause()
Example:
try:
pass
except E1 as e:
pass
except E2 as e:
pass
else:
pass
finally:
pass
See https://docs.python.org/3/reference/compound_stmts.html#the-try-statement-
Nested Class Summary
-
Method Summary
-
Method Details
-
tryKeyword
Token tryKeyword() -
body
StatementList body() -
exceptClauses
List<ExceptClause> exceptClauses() -
elseClause
-
finallyClause
-