Exception throwing
Posted
by Ben Aston
on Stack Overflow
See other posts from Stack Overflow
or by Ben Aston
Published on 2010-03-16T12:06:37Z
Indexed on
2010/03/16
12:16 UTC
Read the original article
Hit count: 260
exceptions
|c#
In C#, will the folloing code throw e
containing the additional information up the call stack?
...
catch(Exception e)
{
e.Data.Add("Additional information","blah blah");
throw;
}
© Stack Overflow or respective owner