Handle an the occurrence of an exception.
(self, frame, exc_info)
| 48 | pass |
| 49 | |
| 50 | def user_exception(self, frame, exc_info): |
| 51 | """Handle an the occurrence of an exception.""" |
| 52 | if _in_rpc_code(frame): |
| 53 | self.set_step() |
| 54 | return |
| 55 | message = _frame2message(frame) |
| 56 | self.gui.interaction(message, frame, exc_info) |
| 57 | |
| 58 | def _in_rpc_code(frame): |
| 59 | "Determine if debugger is within RPC code." |