SenseNet.Messaging.Configuration.ConfigurationExceptionHelper C# (CSharp) Method

ConfigurationExceptionHelper() private static method

private static ConfigurationExceptionHelper ( string key, string msg ) : Exception
key string
msg string
return System.Exception
        private static Exception ConfigurationExceptionHelper(string key, string msg)
        {
            return new System.Configuration.ConfigurationErrorsException(String.Format("{0} Key: {1}: @{2}", msg, SECTIONNAME, key));
        }
    }