The code:
public Constructor(string vConnection_String)
{
try
{
mConnection_String = vConnection_String;
}
catch (Exception ex)
{
ExceptionHandler.CatchEx(ex);
}
}
I think the person who programmed this was "just being careful," but out of interest what exceptions could be thrown on a line that does a string assignment like this one here? I can think of System.OutOfMemoryException, but what others?
Thank you