Habanero.BO.ObjectTreeXmlReader.BuildExceptionMessage C# (CSharp) Method

BuildExceptionMessage() private static method

private static BuildExceptionMessage ( IEnumerable propertyReadExceptions ) : string
propertyReadExceptions IEnumerable
return string
        private static string BuildExceptionMessage(IEnumerable<string> propertyReadExceptions)
        {
            const string crlf = @"\r\n";
            var exceptionMessage = new StringBuilder("");
            foreach (var propertyReadException in propertyReadExceptions)
            {
                exceptionMessage.Append(propertyReadException);
                exceptionMessage.Append(crlf);
            }
            return exceptionMessage.ToString();
        }