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)
| 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.""" |
no test coverage detected