this post was submitted on 17 Jun 2023
41 points (97.7% liked)

Programmer Humor

32060 readers
2108 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 1 year ago (2 children)

M$ Docu sounds like that doesn't make sense, do you have some more context?

[–] [email protected] 2 points 1 year ago

It is a relic of the past, where Microsoft intended developers to inherit all their custom exceptions from ApplicationException. Shortly after, they changed their mind and advised that custom exceptions should derive from the base Exception class.

Apparently. (Source: https://stackoverflow.com/questions/5685923/what-is-applicationexception-for-in-net)

[–] [email protected] 0 points 1 year ago* (last edited 1 year ago) (1 children)

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] 1 points 1 year ago

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