How to catch exception from third party component?
Hi,
Is there a way to catch the exceptions thrown from the third party component.
The case like:
1. I create a new object obj,
2. I call obj.start() function. this MAY start several threads in the object. the start method will return right away.
3. let the application run for a while.
4. somthing wrong in the obj's thread,
I want to catch the exception from the point 4 to avoid the crash of my program.
I have no idea about the thread in the obj, again, it is from 3th party.
All comments are welcome.
Thanks

