Hi there
I'm trying to catch an exception, do then some actions and finally re-throw the catched exception, but how do I get the current exception type?
The code is similar to the example below:
try
{
doSomething();
}
catch
{
doSomethingOther();
throw catchedExceptionBefore;
}
Thank you for your Ideas.