PythonDecorator AST Python Object
The ExceptClause
object matches the except
part of a try
block.
The astType
value for this node is exceptclause
.
Attributes
content
(typeAstElement
): the content of the except block (e.g. the statements in the block)exceptions
(array of typeAstString
): name of all exceptions being raisedas
(typeAstString
): if the exception is renamed