It looks like I experience %subj%.
I'm porting my plugin (bthftp) to x64. Some errors in this plugin are reported as c++ exceptions. I never let them out of plugin.
BUT, on x64 TC reports them before my exception handler has a chance to suppress them.
I didnt try it on 8.0 x86 yet. On 7.56 exception handlers work as expected.
How to reproduce:
- create sample x64 plugin using VS-2010 and C++
- in some function callable from TC use code
Code: Select all
try {
throw std::runtime_error("bugbug");
} catch(std::exception const&) {
//nothing
}
PS. Didnt you try to use vectored exception handlers
