I am calling a function that requires an Exception which you normally get
from a Catch ( Catch(Exception exc)).
But I have a message I am trying to pass to this funtion, but since it
requires an Exception object, I can't just send the message.
I need to create an Exception object and make the exc.Message field equal to
my message and then pass the new object to the function.
Is there a way to do this other than forcing a Catch?
Thanks,
Tom