Brilliant exception handling I found in an app i had to work on
You must log in or register to comment.
Actually, exception rethrowing is a real thing - at least in Java. You may not always want to handle the exception at the absolute lowest level, so sometimes you will instead “bubble” the exception up the callstack. This in turn can help with centralizing exception handling, separation of concerns, and making your application more modular.
It seems counter-intuitive but it’s actually legit, again at least in Java. lol
If your just going to let something higher on the call stack handle it, why catch it in the first place?