SonarLint.VisualStudio.Progress.Controller.ErrorNotification.ErrorNotificationManager.IProgressErrorNotifier C# (CSharp) Method

IProgressErrorNotifier() private method

private IProgressErrorNotifier ( Exception ex ) : void
ex System.Exception
return void
        void IProgressErrorNotifier.Notify(Exception ex)
        {
            if (ex == null)
            {
                throw new ArgumentNullException(nameof(ex));
            }

            lock (this.notifiersLock)
            {
                foreach (IProgressErrorNotifier notifier in this.notifiers)
                {
                    notifier.Notify(ex);
                }
            }
        }
        #endregion