private void CheckArgExists()

in processing-pipelines/common/csharp/ConfigReader.cs [58:64]


        private void CheckArgExists(string arg, string name)
        {
            if (string.IsNullOrEmpty(arg))
            {
                throw new ArgumentNullException(name);
            }
        }