ArtemisComm.Connector.RaiseExceptionEncountered C# (CSharp) 메소드

RaiseExceptionEncountered() 개인적인 메소드

private RaiseExceptionEncountered ( Exception ex ) : void
ex System.Exception
리턴 void
        void RaiseExceptionEncountered(Exception ex)
        {
            if (ExceptionEncountered != null)
            {
                ExceptionEncountered(this, new ExceptionEventArgs(ex, this.ID));
            }
        }