### Blocked by
- [ ] https://github.com/getsentry/sentry/issues/59679#issuecomment-1920193704
{
"message": "Third",
"cause": {
"message": "Second",
"cause": {
"message": "First",
}
}
}
{
"message": "Third",
"errors": [
{
"message": "First",
},
{
"message": "Second",
},
]
}
Description
React Native SDK currently supports linked exceptions using
causebut doesn't support AggregateError.Related information
AggregateErrorsinLinkedErrorsintegration sentry-javascript#8463Notes
Works
{ "message": "Third", "cause": { "message": "Second", "cause": { "message": "First", } } }Not implemented at the moment
{ "message": "Third", "errors": [ { "message": "First", }, { "message": "Second", }, ] }