System.Runtime.Serialization.Json.JavaScriptReader.JsonError C# (CSharp) Method

JsonError() private method

private JsonError ( string msg ) : Exception
msg string
return Exception
        private Exception JsonError(string msg)
        {
            return new ArgumentException(SR.Format(SR.ArgumentException_MessageAt, msg, _line, _column));
        }
    }