Exception handling and threading

allend2010

Newcomer
Joined
Sep 5, 2003
Messages
4
Hello:

Does anybody no if there is a way to throw an exception from a thread back to the calling thread? I have a thread that has the necessary error conditions but I can't throw caught exceptions back to my main thread. Any help anybody can provide would be greatly appreciated.

Thanks
 
The way I do it (not necessarily the neatest way) is to use delegates and pass error handling functions from one thread to the other.
 
Back
Top