System.Data.DataError.SetText C# (CSharp) Method

SetText() private method

Sets the error message for the .
private SetText ( string errorText ) : void
errorText string
return void
        private void SetText(string errorText)
        {
            if (null == errorText)
            {
                errorText = string.Empty;
            }
            _rowError = errorText;
        }