• JustANoone@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      1 year ago

      I should have elaborated, but basically what MD87 replied. During the development of .NET it was decided that every exception caused by programs should inherit from ApplicationException, and all system errors should inherit from SystemException. Unfortunately .NET devs didn’t follow this and now everything should just inherit Exception since it’s easier to check. Interestingly, both SystemException and ApplicationException seem functionally identical to Exception.

      • Greg@feddit.de
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 year ago

        Which actually makes sense. Java logic with exceptions that you cannot catch is a practice no other language has.