this post was submitted on 04 Mar 2024
333 points (99.7% liked)

196

16228 readers
24 users here now

Be sure to follow the rule before you head out.

Rule: You must post before you leave.

^other^ ^rules^

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] hummas@lemmy.blahaj.zone 18 points 6 months ago (5 children)

I’m even more disturbed by the try catch that will never catch anyway. Most disturbing is the absolute heresy that is the throw within the catch. …is vibe even defined here??? I think I need to reconsider my major.

[–] DinosaurSr@programming.dev 16 points 6 months ago (4 children)

Catching and rethrowing just to log the error is a valid use of a try catch IMO

[–] KeenFlame@feddit.nu 3 points 6 months ago (2 children)

If you don't care anything about performance, absolutely

[–] nyjan@feddit.de 2 points 6 months ago (1 children)

My personal take on this, at least when dealing with more complex or production code:

Performance is not an issue with exceptions if you don't use them for control flow, they should be an unusual occurrence wherever possible.

If you expect to throw and later handle an exception regularly, I'd try to include relevant info about the failure in the returned value, or even better in the returned type, and skip throwing the exception altogether.

Returning a type that contains both error info and the actual result (if there is one) and forces the caller of your function to handle any contained error info before being able to access the actual result has the same effect as a try/catch block without the major performance implications.

This is basically what rust does everywhere in order to completely remove the concept of exceptions, but it's a nice performance optimization for langues with exceptions as well.

Exceptions should interrupt your programs flow, not control it, at least in all hot execution paths. Thanks for coming to my ted talk

[–] KeenFlame@feddit.nu 1 points 6 months ago

Performance isn't an issue if you don't care about performance, correct.

load more comments (1 replies)
load more comments (1 replies)