Mantis#2336. Thank you kindly, Ralphos for a patch that:

Prevent EventAbortException inner exceptions of 
TargetInvocationException being re-thrown from 
OpenSim.Region.ScriptEngine.Shared.ScriptBase.
Executor.ExecuteEvent
0.6.0-stable
Charles Krinke 2008-10-06 00:51:36 +00:00
parent 4f6cdc08d6
commit dedc1baeb7
1 changed files with 8 additions and 3 deletions

View File

@ -197,9 +197,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
}
catch (TargetInvocationException tie)
{
// Grab the inner exception and rethrow it
// Grab the inner exception and rethrow it, unless the inner
// exception is an EventAbortException as this indicates event
// invokation termination due to a state change.
if ( !(tie.InnerException is EventAbortException) )
{
throw tie.InnerException;
}
}
catch (Exception e)
{
throw e;