GSF.ServiceProcess.ServiceHelper.OnLoggedException C# (CSharp) Method

OnLoggedException() protected method

Raises LoggedException event with logged exception.
protected OnLoggedException ( Exception ex ) : void
ex System.Exception Logged .
return void
        protected virtual void OnLoggedException(Exception ex)
        {
            if ((object)LoggedException != null)
                LoggedException(this, new EventArgs<Exception>(ex));
        }
ServiceHelper