Ruby: Get rid of the change note.

This commit is contained in:
Anders Schack-Mulligen
2026-06-19 13:27:34 +02:00
parent 132b476acd
commit 6fbb572950

View File

@@ -1,4 +0,0 @@
---
category: breaking
---
* When a `rescue` clause has two or more exception types, the exceptions are no longer direct children of the `RescueClause` node. Instead, a new `ExceptionList` AST node wraps the exceptions. Use `RescueClause.getExceptions()` to get the `ExceptionList` node, and `ExceptionList.getException(int n)` to access the individual exceptions. For `rescue` clauses with zero or one exception, the behavior is unchanged and `RescueClause.getException(int n)` continues to work as before.