ExportErrorEventArgs
Represents export error event argument data. This class cannot be inherited.
using System;
namespace Relativity.DataExchange.Process
{
public sealed class ExportErrorEventArgs : EventArgs
{
public string Path { get; }
public ExportErrorEventArgs(string path)
{
Path = path;
}
}
}