Can’t use throw HttpException inside a map making an axios request

I’m trying to make an axios request inside a array.map , for each map item i need to make a axios request and save some response info. When i’m using my code logic all errors handled in my catch block can’t make a throw HttpException inside my catch block since it doesn’t send my error back to my nestjs filter.

I’m using a axios interceptor in my main.ts file, the error goes to my interceptor in main.ts and my code breaksService example code and result(postman don’t receive nothing)

code example and result without the map function

axios interceptor in main.ts
my httpException filter (default filter from nestjs docs)

I’m expecting to throw an httpException and my filter handles the error