This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 67
Exception information not available when breaking on 'Raised Exceptions' #152
Comments
Is this a new issue or regression? |
I came across this last week, but assumed it was caused by #117. From what I can see following methods aren't being invoked (for unhandled exceptions). I guess you already know this. @pydevd_events.handler(pydevd_comm.CMD_SEND_CURR_EXCEPTION_TRACE)
def on_pydevd_send_curr_exception_trace(self, seq, args):
@pydevd_events.handler(pydevd_comm.CMD_SEND_CURR_EXCEPTION_TRACE_PROCEEDED) |
This was referenced Mar 1, 2018
DonJayamanne
added a commit
that referenced
this issue
Mar 1, 2018
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The exception information (name, type) is not available when breaking on exceptions.
Exception message needs to be returned in the
text
property of thestopped
event.See here:
https://github.com/Microsoft/vscode-debugadapter-node/blob/master/protocol/src/debugProtocol.ts#L88
The text was updated successfully, but these errors were encountered: