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

ImportExportException

The exception thrown when a serious import or export error occurs. This represents a common base exception type for import and export workflows.
using System; using System.Runtime.Serialization; namespace Relativity.DataExchange { [Serializable] public class ImportExportException : Exception { public ImportExportException() { } public ImportExportException(string message) : base(message) { } public ImportExportException(string message, Exception innerException) : base(message, innerException) { } protected ImportExportException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }