DataAccessFramework.StringParameterTooLongException.ToString C# (CSharp) Method

ToString() public method

Gets a string describing the exception
public ToString ( ) : string
return string
        public override string ToString()
        {
            return string.Format(
                "Error creating string parameter. Value too long. " +
                "Parameter name: {0}. Max length: {1}. Actual length: {2}\n\r",
                    ParameterName, MaxLength, ActualLength) + "/n/r" +
                base.ToString();
        }
StringParameterTooLongException