public MatchAnnotation(MatchAnnotationSeverity severity, MatchAnnotationCode code, string message) : this(
         severity, code.ToString(), message)
 {
 }
 public MatchAnnotation(MatchAnnotationSeverity severity, MatchAnnotationCode code) : this(severity,
                                                                                           code.ToString(), code.GetDescription())
 {
 }
 public MatchAnnotation(MatchAnnotationSeverity severity, string code, string message)
 {
     Severity = severity;
     Code     = code;
     Message  = message;
 }