Reputation: 18650
When debugging with Chrome's developer tools one can enable breakpoints for all exceptions (or only uncaught ones). How does one view the current exception details when an exception is thrown?
Upvotes: 4
Views: 561
Reputation: 18650
In the devtools Scope Variables panel you can find <exception>
, which will contain the exception details. The callstack for the exception is visible in the Call Stack panel.
Upvotes: 3