I have a list of functions that may fail and, if one fails, I don\'t want the script to stop, but to continue with next function.
I am executing it with something like th
You can avoid the error if you then re-raise the Exception. This way you are able to do damage control and not endanger loosing track of its occurance.