Is it good way to throw Http Exeption at service in nestjs? What is the best way to processing error at service in nestjs?
From my point of view, services can be reusable and contain business logic, so handling exceptions there is not the best, since it could be that in another use case, the thrown exception is not the most appropriate, in my case the services throw custom errors that can be later interpreted by the controller and that is where I think the Http Exception should be thrown.