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?
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?