public MvcErrorHttpResponse(int httpStatusCode, string errorId, string message)
 {
     this.httpStatusCode = httpStatusCode;
     this.errorId = errorId;
     this.message = message;
     Template = new StringTemplate(ErrorResponseTemplateText);
 }
 public RestErrorHttpResponse(int httpStatusCode, string errorId, string message, string incidentId)
 {
     this.httpStatusCode = httpStatusCode;
     this.errorId = errorId;
     this.message = message;
     Template = new StringTemplate(ErrorResponseTemplateText);
     this.incidentId = incidentId;
 }