Throwing an exception on a thread....

R

Robinson

Hi,

I have 2 menu items on the Debug menu of my application:

Throw Exception On Form and
Throw Exception In Worker Thread

The former just executes:

throw new Exception ( "I'm testing exception handling here" )

but I want the second to make my worker thread throw an exception too. I
thought about using Thread.Abort to make it throw a thread abort exception,
but I would rather somehow raise the exception on the thread in a more
general way (i.e. a general exception, or an exception type of my choosing).
As the worker thread performs one of a hundred or so different operations, I
don't want to have to insert "throw now" logic into every single operation
and, moreover, this will make the exception throw at the same place each
time, not good for testing.

So, in short, is it possible to throw an exception from one thread to be
handled on another?
 
M

Mattias Sjögren

So, in short, is it possible to throw an exception from one thread to be
handled on another?

Not just like that. You have to use some kind of thread
synchronization machanism, such as a ManualResetEvent, to signal the
the thread to execute the code you want.


Mattias
 
R

Robinson

Not just like that. You have to use some kind of thread
synchronization machanism, such as a ManualResetEvent, to signal the
the thread to execute the code you want.

Okay, I thought that might be the case. Thanks anyway.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top