axios-catch-error.js �Y���U ����U /* * Handling Errors using async/await * Has to be used inside an async function */ try { const response = await axios.get('https://your.site/api/v1/bla/ble/bli'); // Success 🎉 console.log(response); } catch (error) { // Error 😨 if (error.response) { /* * The request was made and the server responded with a * status code that falls out of the range of 2xx */ con