• @JustANooneOP
    link
    English
    5
    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.

    • @[email protected]
      link
      fedilink
      English
      41 year ago

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