Posts
Sort by recent activity
Exception on handled exception
Hi!
ANTS Profiler claims this is an unhandled exception:
try
{
// Some code that generates an exception in another assembly
obj->SomeMethod();
}
catch(Exception* ex)
{
// Handles exception
}
When r...