Global Exception Handling in Asp.Net Core Web API using IExceptionHandler

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024

Комментарии • 31

  • @kaushikbhadani
    @kaushikbhadani 10 месяцев назад +2

    Thank you Nitish Kaushik! Your tutorial is very very nice. waiting for your new series...

  • @egitim10
    @egitim10 8 месяцев назад +1

    Very clear. Thanks Nitish

  • @TeemoPwnstar
    @TeemoPwnstar 6 месяцев назад +1

    Excellent video - thank you Nitish

  • @GurdeepSingh-cg1yp
    @GurdeepSingh-cg1yp 3 месяца назад +3

    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.

  • @aamirkhan3657
    @aamirkhan3657 8 месяцев назад +1

    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

  • @coding-gemini
    @coding-gemini 2 месяца назад

    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.

  • @venkatrao100
    @venkatrao100 21 день назад

    How to close db connections if exception raised in this approach? Generally i can close db connection in finally block...

  • @adarsharooradarsharoor5305
    @adarsharooradarsharoor5305 6 месяцев назад

    How can we include it in the DLL's because all the business logics usually we write it inside the separate DLL's.

  • @vyshakhkm
    @vyshakhkm 9 месяцев назад

    How can use this exception handler in POST request

  • @achalprajapati1192
    @achalprajapati1192 4 месяца назад

    if we are use Authorize attribute then How to handle Authorize exception handling?

  • @omarabdelrahim8949
    @omarabdelrahim8949 Месяц назад

    I need a full course with real project multi language supporting with generate report and sending real time notification.

  • @KnowlegeStream
    @KnowlegeStream 6 месяцев назад

    How to register Exception handler with logger in Program.cs?

  • @geragamo
    @geragamo Месяц назад

    nice

  • @NaveenKumar-dc8jv
    @NaveenKumar-dc8jv 7 месяцев назад +1

    Simple and good. :)

  • @farapar3783
    @farapar3783 10 месяцев назад

    if my app can not to connect to db then how this handler can help because in my code i cant throw excetion

    • @nitish.kaushik
      @nitish.kaushik  10 месяцев назад +2

      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.

  • @sachinrajput4746
    @sachinrajput4746 10 месяцев назад

    Thanks sir

  • @UnbiasedThamizhan
    @UnbiasedThamizhan 5 месяцев назад +2

    Your intention is right, but not clear; You have to stop and show the difference between two handlers.

  • @oveskhan687
    @oveskhan687 8 месяцев назад

    can you show how to use this handler in console app

    • @nitish.kaushik
      @nitish.kaushik  7 месяцев назад +1

      This is for Asp.Net core only

    • @oveskhan687
      @oveskhan687 7 месяцев назад

      @@nitish.kaushik yes .net core console app. How to implement it on console app.

    • @nitish.kaushik
      @nitish.kaushik  7 месяцев назад +1

      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

  • @v4raziel
    @v4raziel 3 месяца назад

    Bad Approach for handling multiple exceptions types.. app.

    • @krccmsitp2884
      @krccmsitp2884 2 месяца назад

      You can handle multiple or even all exception types in one single exception handler.