Nest Js Exceptions handling
I am implementing authentication in Nest Js. According to Nest Js best practices, inside services
should be business logic and inside controllers
we can handle all exceptions (to throw or to catch them).
Here is my AuthenticationService