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

Relativity.DataExchange.Process.ProcessErrorWriter

Represents a class object that writes all process errors to a CSV file. This class cannot be inherited.
namespace Relativity.DataExchange.Process { internal sealed class ProcessErrorWriter : IProcessErrorWriter, IDisposable { public bool HasErrors { get; } public ProcessErrorWriter(IFileSystem fileSystem, ILog logger); public ProcessErrorReport BuildErrorReport(CancellationToken token); public void Close(); public void Dispose(); public void Write(string key, string description); } }