Apache.NMS.ActiveMQ.Transactions.RecoveryLoggerHarness.FindLoggerFactory C# (CSharp) Method

FindLoggerFactory() private static method

private static FindLoggerFactory ( string scheme ) : Type
scheme string
return System.Type
        private static Type FindLoggerFactory(string scheme)
        {
            try
            {
                return FACTORY_FINDER.FindFactoryType(scheme);
            }
            catch
            {
                throw new NMSException("Failed to find Factory for Recovery Logger type: " + scheme);
            }
        }