i have a scenario where some unknown exceptions
may be raised during program execution and i can't except
most of them and i want every time any exception
will raise an email should send to me as exceptions
cause program to terminate if not properly catch!
so i have read about python
provide atexit
module but it did not work with exceptions
so my question is , is there any way to make atexit
work with exceptions
?? so every any exception raised and programs terminates it should send me a mail?
thanks