You can try this in the catch part:
catch(error => {
if (!error.response) {
// network error
this.errorStatus="Error: Network Error";
} else {
this.errorStatus = error.response.data.message;
}
})