Skip to content
Advertisement

Getting line number from the exception object

I have defined a custom Exception object and would like to get the line number of the exception.

JavaScript

Now, if there is a exception in something() it throws the FlowException but it does not give me the exact line number, How can I get the line number from FlowException(ie; it failed when it executed 2/0)?

Here is the output:–

JavaScript

Advertisement

Answer

The traceback object holds that info in the tb_lineno attribute:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement