Hello,<br><br>I'm catching exceptions raised in my winforms thread using<br><br> def exceptionHandler(sender, event):<br> print event.Exception<br><br> Application.ThreadException += ThreadExceptionEventHandler(exceptionHandler)
<br> 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>