public DataRowError(StructuredDataRow dataRow, Exception internalException, string propertyName, string description, string readValue) { this.InternalException = internalException; this.PropertyName = propertyName; this.Description = description; this.ReadValue = readValue; this.DataRow = dataRow; }
public DataRowError(StructuredDataRow dataRow, Exception internalException, string propertyName, string description) : this(dataRow, internalException, propertyName, description, string.Empty) { }