Apache.NMS.ActiveMQ.ConnectionFactory.ExceptionHandler C# (CSharp) Method

ExceptionHandler() protected static method

protected static ExceptionHandler ( Exception ex ) : void
ex System.Exception
return void
        protected static void ExceptionHandler(Exception ex)
        {
            if(ConnectionFactory.onException != null)
            {
                ConnectionFactory.onException(ex);
            }
        }