Hello,<br><br>I&#39;m catching exceptions raised in my winforms thread using<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; def exceptionHandler(sender, event):<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; print event.Exception<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Application.ThreadException += ThreadExceptionEventHandler(exceptionHandler)
<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException)<br><br>However the exception I get, contains the long, unintuitive stack trace. How can I convert it to a nice Python exception ?
<br><br>Regards,<br>Laurent Debacker.<br><br>