Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Created February 8, 2026 13:57
Show Gist options
  • Select an option

  • Save vanaf1979/8064060dd2bbe358d8a8e4759d049d6e to your computer and use it in GitHub Desktop.

Select an option

Save vanaf1979/8064060dd2bbe358d8a8e4759d049d6e to your computer and use it in GitHub Desktop.
Fetch throw
if (!response.ok) {
const errorBody = await response.json();
throw new Error(errorBody.message || 'Something went wrong on the server');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment