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

ImporterException

public class ImporterException : Exception
Represents an exception that occured while attempting to import data.
public const int ExcelSingleCharMaxOrdinal = 26

The maximum column ordinal before the Excel-style ordinal requires more than 1 character.

public string AdditionalInfo { get; set; }

Gets or sets the additional information describing this failure.

public int Column { get; set; }

Gets or sets the index of the column causing the exception.

public string FieldName { get; set; }

Gets or sets the name of the field causing the exception.

public long Row { get; set; }

Gets or sets the index of the row causing the exception.

Initializes a new instance of the ImporterException class.

public ImporterException(string message)

Initializes a new instance of the ImporterException class.

public ImporterException(string message, Exception innerException)

Initializes a new instance of the ImporterException class.

protected ImporterException(long row, string fieldName, string additionalInfo)

Initializes a new instance of the ImporterException class.

protected ImporterException(long row, string fieldName, string additionalInfo, Exception innerException)

Initializes a new instance of the ImporterException class.

protected ImporterException(long row, int column, string fieldName, string additionalInfo)

Initializes a new instance of the ImporterException class.

protected ImporterException(long row, int column, string fieldName, string additionalInfo, Exception innerException)

Initializes a new instance of the ImporterException class.

protected ImporterException(long row, int column, string additionalInfo)

Initializes a new instance of the ImporterException class.

protected ImporterException(long row, int column, string additionalInfo, Exception innerException)

Initializes a new instance of the ImporterException class.

Initializes a new instance of the ImporterException class.