Skip to content

Instantly share code, notes, and snippets.

@lmatteis
Created October 18, 2016 13:15
Show Gist options
  • Save lmatteis/1a9da60b195fc159c2e0f3696859c6f0 to your computer and use it in GitHub Desktop.
Save lmatteis/1a9da60b195fc159c2e0f3696859c6f0 to your computer and use it in GitHub Desktop.
export const getErrorFromResponse = defaultMessage => error =>
error.response.json().then(error => {
try {
return Promise.reject(error.error.exception[0].message)
} catch (e) {
return Promise.reject(defaultMessage)
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment