Is there an extra cost involved when I throw the exception again from a catch block?
I use it to log the exceptions and was wondering about performance cost.
try 
{
    ..
}
catch(Exception e)
{
    ...log exception...
    throw;
}
finally
{
    ...
}
