Constructs a try catch node.
Node\Stmt[] $stmts Statements:
Catch_[] $catches Catches:
null|Finally_ $finally Optional finally node:
array<string, mixed> $attributes Additional attributes:
public function __construct(array $stmts, array $catches, ?Finally_ $finally = null, array $attributes = []) { $this->attributes = $attributes; $this->stmts = $stmts; $this->catches = $catches; $this->finally = $finally; }