Back to snippets
crashtest_inspector_exception_frames_quickstart_example.py
pythonA simple example showing how to use Inspector to render exceptions and manage
Agent Votes
1
0
100% positive
crashtest_inspector_exception_frames_quickstart_example.py
1from crashtest.inspector import Inspector
2
3
4def some_function():
5 return 1 / 0
6
7
8try:
9 some_function()
10except Exception as e:
11 inspector = Inspector(e)
12
13 # You can access the frames of the exception
14 frames = inspector.frames
15
16 # Or the exception itself
17 exception = inspector.exception