public TemplateProcessingException(TemplateProcessorTypes type, params string[] errors)
     : this("Failed to process template", type, errors)
 {
 }
 public TemplateProcessingException(string msg, TemplateProcessorTypes type, IEnumerable <string> errors)
     : base(msg)
 {
     TemplateProcessorType = type;
     Errors = errors;
 }