Пример #1
0
 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;
 }
Пример #2
0
 public DataRowError(StructuredDataRow dataRow, Exception internalException, string propertyName, string description)
     : this(dataRow, internalException, propertyName, description, string.Empty)
 {
 }