A ValidationErrorSet instance can be used to capture syntax or semantic validation errors generated during XML parsing or business rule evaluation.
 /// <summary>
 /// Construct a <b>ValidationErrorSetAdapter</b> which will capture
 /// errors and store them in the indicated <see cref="ValidationErrorSet"/>.
 /// </summary>
 /// <param name="errorSet"></param>
 public ValidationErrorSetAdapter(ValidationErrorSet errorSet)
 {
     this.errorSet = errorSet;
 }