GSF.IO.RunTimeLog.OnProcessException C# (CSharp) Method

OnProcessException() protected method

Raises ProcessException event.
protected OnProcessException ( Exception ex ) : void
ex System.Exception Processing .
return void
        protected virtual void OnProcessException(Exception ex)
        {
            if ((object)ProcessException != null)
                ProcessException(this, new EventArgs<Exception>(ex));
        }