//TODO: Use log to instead temporarily,
 //need to decide whether to show these failures on error window
 public void HandleException(Exception exception)
 {
     //await Dispatcher.CurrentDispatcher.InvokeAsync(() =>
     //{
     //  ExceptionDispatchInfo.Capture(exception).Throw();
     //}, DispatcherPriority.Send).Task.ConfigureAwait(false);
     RNTracer.Error(ReactConstants.Tag, "[RN_EXCEPTION] DisabledDevSupportManager::HandleException:[" + exception.ToString() + "]");
     MainSynchronizationContext.Quit();
 }