System.Xml.Xsl.Xslt.QilGenerator.ThrowErrorHelper.ReportError C# (CSharp) Method

ReportError() public method

public ReportError ( string res ) : void
res string
return void
            public void ReportError(string res, params string[] args) {
                Debug.Assert(args == null || args.Length == 0, "Error message must already be composed in res");
                throw new XslLoadException(Res.Xml_UserException, res);
            }
QilGenerator.ThrowErrorHelper