MCPcopy Index your code
hub / github.com/fabioz/PyDev.Debugger / send_caught_exception_stack

Method send_caught_exception_stack

pydevd.py:2011–2018  ·  view source on GitHub ↗

Sends details on the exception which was caught (and where we stopped) to the java side. arg is: exception type, description, traceback object

(self, thread, arg, curr_frame_id)

Source from the content-addressed store, hash-verified

2009 self.post_internal_command(int_cmd, thread_id)
2010
2011 def send_caught_exception_stack(self, thread, arg, curr_frame_id):
2012 """Sends details on the exception which was caught (and where we stopped) to the java side.
2013
2014 arg is: exception type, description, traceback object
2015 """
2016 thread_id = get_thread_id(thread)
2017 int_cmd = InternalSendCurrExceptionTrace(thread_id, arg, curr_frame_id)
2018 self.post_internal_command(int_cmd, thread_id)
2019
2020 def send_caught_exception_stack_proceeded(self, thread):
2021 """Sends that some thread was resumed and is no longer showing an exception trace."""

Callers 2

handle_exceptionFunction · 0.80

Calls 3

post_internal_commandMethod · 0.95
get_thread_idFunction · 0.90

Tested by

no test coverage detected