
Traceback (most recent call last):
  File "tests/exceptions/source/backtrace/nested_chained_catch_up.py", line 22, in main
    foo()
  File "tests/exceptions/source/backtrace/nested_chained_catch_up.py", line 11, in foo
    bar()
  File "tests/exceptions/source/backtrace/nested_chained_catch_up.py", line 16, in bar
    1 / 0
ZeroDivisionError: division by zero

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "tests/exceptions/source/backtrace/nested_chained_catch_up.py", line 27, in <module>
    main()
  File "tests/exceptions/source/backtrace/nested_chained_catch_up.py", line 24, in main
    raise ZeroDivisionError from e
ZeroDivisionError

Traceback (most recent call last):
  File "tests/exceptions/source/backtrace/nested_chained_catch_up.py", line 22, in main
    foo()
  File "tests/exceptions/source/backtrace/nested_chained_catch_up.py", line 11, in foo
    bar()
  File "tests/exceptions/source/backtrace/nested_chained_catch_up.py", line 16, in bar
    1 / 0
ZeroDivisionError: division by zero

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
> File "tests/exceptions/source/backtrace/nested_chained_catch_up.py", line 27, in <module>
    main()
  File "tests/exceptions/source/backtrace/nested_chained_catch_up.py", line 24, in main
    raise ZeroDivisionError from e
ZeroDivisionError
