Definitions for "Stack Trace"
The sequence of procedure calls leading to the program counter at any given time.
a function call stack, often helpful for understanding the cause of a bug
a list of function calls that leads to some point in the program
a useful debugging tool that you'll normally take advantage of when an exception has been thrown
A sequence of method-call stack frames (where each stack frame describes an incomplete method call) and related source code information that identify the location of code responsible for throwing an exception object.