Exception Handling

Stack Trace

English

Overview

A record showing where an exception occurred and how it was called.

Details

Information recording the history of function calls leading up to the point an exception occurred, providing clues for pinpointing the cause while debugging. In production, it's common to show the user only the exception message while sending the full stack trace to logs alone -- leaking internal implementation details externally can itself be a security risk.

More Programming terms