Called on exception
(self, exc)
| 140 | return self.on_exception(exc) |
| 141 | |
| 142 | def on_exception(self, exc): |
| 143 | """Called on exception""" |
| 144 | if not self.get_exception_code() in winexception.exception_name_by_value: |
| 145 | return windef.EXCEPTION_CONTINUE_SEARCH |
| 146 | return windef.EXCEPTION_CONTINUE_EXECUTION |
| 147 | |
| 148 | def del_bp(self, bp, targets=None): |
| 149 | """Delete a breakpoint""" |
no test coverage detected