<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

Relativity.DataExchange.Data.ImporterException

public class ImporterException : Exception
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); } }