(self, func_id, frameno, lineno, exception)
| 861 | return result |
| 862 | |
| 863 | def addExceptionFrame(self, func_id, frameno, lineno, exception): |
| 864 | key = exception |
| 865 | if key not in self.detachedFramesException: |
| 866 | self.detachedFramesException[key] = (func_id, frameno, lineno) |
| 867 | |
| 868 | def logTracedException(self, exception): |
| 869 | exceptionType = str(type(exception).__name__) |