[[
wikihub
]]
Search
⌘K
Explore
People
For Agents
Sign in
Explore
People
For Agents
Sign in
×
@jemoka / Jemoka Knowledge Base / wiki/concepts/stack_trace.md
Suggest edit
Cancel
Submit suggestion
Title
Name
Note
--- title: "stack trace" type: concept related: [Stack Trace] source: https://www.jemoka.com/posts/kbhstack_trace/ confidence: high status: active --- A stack trace is the output of failing code by the runtime to indicate the location of the fault. For instance, in Python: --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-1-0b766d7d4bc7> in <module> ----> 1 0+"" TypeError: unsupported operand type(s) for +: 'int' and 'str'