System.Linq.Expressions.Error.UndefinedVariable C# (CSharp) Method

UndefinedVariable() static private method

InvalidOperationException with message like "variable '{0}' of type '{1}' referenced from scope '{2}', but it is not defined"
static private UndefinedVariable ( object p0, object p1, object p2 ) : Exception
p0 object
p1 object
p2 object
return Exception
        internal static Exception UndefinedVariable(object p0, object p1, object p2)
        {
            return new InvalidOperationException(Strings.UndefinedVariable(p0, p1, p2));
        }
        /// <summary>
Error