Hi everyone,
I need to catch an error witch is thown by an internal class
try
{
...
_COM.send(); <--internal class, i can not step into
}
catch
{
//throw error...
}
Depends of the type of error the try-catch works or not. My problem is that i need to capture the error without stop the code (it is in a loop). I don't know how to do this. the try-catch it's not working so I can't handle it.
Thanks.
*This post is locked for comments