On 10/6/14, 7:24 AM, monarch_dodra wrote:
If your "catch" throws an exception, then the new exception simply
"squashes" replaces the old one:
//----
catch (Exception e)
{
thisMightThrow(); //Lose "e" here
throw e;
}
//----
That's code under library/user control, I'm talking about the responsibility of the language. -- Andrei
