protected virtual void OnExceptionThrown(ServerModeExceptionThrownEventArgs e)
 {
     if (ExceptionThrown != null)
     {
         ExceptionThrown(this, e);
     }
 }
 void _List_ExceptionThrown(object sender, ServerModeExceptionThrownEventArgs e)
 {
     OnExceptionThrown(e);
 }