On 12/28/2012 5:29 AM, Phil Lavoie wrote: > So, if I got this right, doing this is not ideal: > extern( Windows ) nothrow LRESULT WndProc( HWND hwnd, UINT message, WPARAM > wParam, LPARAM lParam ) { > try { > ... > } catch( Exception e ) { ... } > } > > And should be changed to : > catch( Throwable t ) { ... } > ? Yes.