Thank you Nitish Kaushik! Your tutorial is very very nice. waiting for your new series...
@egitim109 ай бұрын
Very clear. Thanks Nitish
@TeemoPwnstar7 ай бұрын
Excellent video - thank you Nitish
@nitish.kaushik7 ай бұрын
Glad you liked it!
@NaveenKumar-dc8jv8 ай бұрын
Simple and good. :)
@sachinrajput474611 ай бұрын
Thanks sir
@aamirkhan36579 ай бұрын
how can i get the error message with status code from exception middleware and get it in api controller and send that in response to the user
@venkatrao100Ай бұрын
How to close db connections if exception raised in this approach? Generally i can close db connection in finally block...
@GurdeepSingh-cg1yp4 ай бұрын
The use of "if not" in the exception handlers is not a good idea as that would mean you will need to add a new check to all your handlers every time you add a new exception handler.
@vyshakhkm10 ай бұрын
How can use this exception handler in POST request
@coding-gemini3 ай бұрын
This is good stuff bro, thanks. What if we want to continue processing other code and not return back the exception to the controller just logging it, how do we do that.
@adarsharooradarsharoor53057 ай бұрын
How can we include it in the DLL's because all the business logics usually we write it inside the separate DLL's.
@geragamo2 ай бұрын
nice
@achalprajapati11925 ай бұрын
if we are use Authorize attribute then How to handle Authorize exception handling?
@farapar378311 ай бұрын
if my app can not to connect to db then how this handler can help because in my code i cant throw excetion
@nitish.kaushik11 ай бұрын
You don't have to throw the exception explicitly. I was throwing them just for the demo. Otherwise this Handler will catch all the exceptions.
@KnowlegeStream7 ай бұрын
How to register Exception handler with logger in Program.cs?
@oveskhan6879 ай бұрын
can you show how to use this handler in console app
@nitish.kaushik8 ай бұрын
This is for Asp.Net core only
@oveskhan6878 ай бұрын
@@nitish.kaushik yes .net core console app. How to implement it on console app.
@nitish.kaushik8 ай бұрын
Asp. Net core is for web applications. Asp. Net core is a sub framework of dotnet core ecosystem and asp.net core is diff from console
@omarabdelrahim89492 ай бұрын
I need a full course with real project multi language supporting with generate report and sending real time notification.
@UnbiasedThamizhan7 ай бұрын
Your intention is right, but not clear; You have to stop and show the difference between two handlers.
@v4raziel4 ай бұрын
Bad Approach for handling multiple exceptions types.. app.
@krccmsitp28843 ай бұрын
You can handle multiple or even all exception types in one single exception handler.