Skip to content

Tag: exception

Python – Exception Handling

Till I know, Python exception handling includes four types of keyword (try, except, finally, Raise) + else. But I read some articles that say throw, catch keyword in Python. Really, Python has this keyword. I read these two official documentation for Exception Handling. But they did not mention that Errors an…

Python try/finally wtih sys.exc_info()

I’m trying to write a python job that which I will be using in all the other jobs to capture the job start time and when a program finishes successfully or with some issues, I capture the error details and load the details into a table. Program I’m using the job I’m trying to capture the err…