I have a python file in which i have two functions that each of them raise an exception.
def f():
raise e1
def g():
raise e2
My question, is it possible to store these exceptions in a variable, like list for example--[e1, e2]--, in order to control the order of exceptions execution in another function, say h ?
except
to respond immediately. I'm not sure you're using them correctly. – Patrizius