17 using System.Collections.Generic;
19 using erminas.SmartAPI.CMS.Project.Pages;
21 namespace erminas.SmartAPI.Exceptions
30 private static string BuildMessage(IEnumerable<string> names)
32 const string MESSAGE =
"Missing values for the following mandatory elements: {0}";
33 string missingElements = names.Aggregate(
"", (s, s1) => s + (s.Any() ?
", " :
"") + s1);
35 return string.Format(MESSAGE, missingElements);