You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Rename the non-exported `catch_stack()` to the more descriptive name
`current_exceptions()`. Keep the old name available but deprecated.
* Introduce an ExceptionStack as the return type for the function, which
(as an AbstractVector) is API-compatible with the previous type
returned by `catch_stack()`
Having ExceptionStack gives us a place to integrate exception printing
in a natural way. In the same way this should be useful for dispatch in
other areas of the ecosystem which want to dispatch on exception stacks.
Copy file name to clipboardexpand all lines: NEWS.md
+1
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,7 @@ Standard library changes
87
87
```
88
88
([#39322])
89
89
*`@lock` is now exported from Base ([#39588]).
90
+
* The experimental function `Base.catch_stack()` has been renamed to `current_exceptions()`, exported from Base and given a more specific return type ([#29901])
0 commit comments