* Marking off which uses of catch (Exception e) is legit and which are not, for later removal/replacement.

This commit is contained in:
Adam Frisby
2008-02-06 15:30:02 +00:00
parent a37eb62047
commit f93fdfa5af
5 changed files with 12 additions and 12 deletions

View File

@@ -365,7 +365,7 @@ namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO
bytes[i] = br.ReadByte();
return bytes;
}
catch (Exception e)
catch (Exception e) // NOTLEGIT: No user related exceptions throwable here?
{
Common.SendToDebug("Exception: " + e.ToString());
throw (e);