Is there a point to handle exceptions in selenium besides for logging purposes?

Hello,
I am finding it hard to understand the point of exception handling in selenium/appium.
For example, if I try to click on an element, and the element could not be found then “NoSuchElementException” occurs.
I can catch the exception, throw new RunTimeException, or do nothing. The result will be the same ( the program will fail and stop ).
Why would I bother to handle such an exception?
Am I missing something here?

thanks