Skip to content

Instantly share code, notes, and snippets.

@ThomasAribart
Last active May 10, 2020 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThomasAribart/94fa2750ba40fed17a18dc08988487e5 to your computer and use it in GitHub Desktop.
Save ThomasAribart/94fa2750ba40fed17a18dc08988487e5 to your computer and use it in GitHub Desktop.
const formatErrorForApiGateway = ({ parsers } = { parsers: [] }) =>
({ error }) => {
const { statusCode, key, message } = parseError(error, parsers);
throw `[${statusCode}] [${key}] ${message}`;
};
...
const handler = middy(businessLogic)
.onError(formatErrorForApiGateway({ parsers: [parseAxiosError] });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment