Concordion.Internal.Commands.RunCommand.AnnounceError C# (CSharp) Method

AnnounceError() private method

private AnnounceError ( Exception exception, Element element, string expression ) : void
exception System.Exception
element Concordion.Api.Element
expression string
return void
        private void AnnounceError(Exception exception, Element element, string expression)
        {
            foreach (var listener in m_Listeners)
            {
                listener.ExceptionCaught(new ExceptionCaughtEvent(exception, element, expression));
            }
        }