Example #1
0
        public override string ToString()
        {
            StringBuilder builder = new StringBuilder();

            foreach (Exception exception in this)
            {
                ExceptionUtility.AppendMessage(builder, 0, exception);
            }
            return(builder.ToString());
        }