Relativity.DataExchange.Data.ImporterException
Represents an exception that occured while attempting to import data.
namespace Relativity.DataExchange.Data
{
public class ImporterException : Exception
{
public const int ExcelSingleCharMaxOrdinal = 26;
public string AdditionalInfo { get; set; }
public int Column { get; set; }
public string FieldName { get; set; }
public long Row { get; set; }
public ImporterException();
public ImporterException(string message);
public ImporterException(string message, Exception innerException);
protected ImporterException(long row, string fieldName, string additionalInfo);
protected ImporterException(long row, string fieldName, string additionalInfo, Exception innerException);
protected ImporterException(long row, int column, string fieldName, string additionalInfo);
protected ImporterException(long row, int column, string fieldName, string additionalInfo, Exception innerException);
protected ImporterException(long row, int column, string additionalInfo);
protected ImporterException(long row, int column, string additionalInfo, Exception innerException);
protected ImporterException(SerializationInfo info, StreamingContext context);
}
}