Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement exception groups (AggregateError) #3579

Open
1 task done
krystofwoldrich opened this issue Feb 5, 2024 · 1 comment
Open
1 task done

Implement exception groups (AggregateError) #3579

krystofwoldrich opened this issue Feb 5, 2024 · 1 comment

Comments

@krystofwoldrich
Copy link
Member

krystofwoldrich commented Feb 5, 2024

Description

React Native SDK currently supports linked exceptions using cause but doesn't support AggregateError.

Blocked by

  1. Component: Grouping Product Area: Issues Sync: Jira Type: Bug
    lobsterkatie

Related information

Notes

  • Implementing this might likely change grouping so it should be done in a major version.

Works

{
	"message": "Third",
	"cause": {
		"message": "Second",
		"cause": {
			"message": "First",
		}
	}	
}

Not implemented at the moment

{
	"message": "Third",
	"errors": [
		{
			"message": "First",
		},
		{
			"message": "Second",
		},
	]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Blocked
Development

No branches or pull requests

1 participant