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

FatalExceptionEventArgs

public sealed class FatalExceptionEventArgs : EventArgs
Represents the fatal exception event argument data. This class cannot be inherited.
using System; namespace Relativity.DataExchange.Process { public sealed class FatalExceptionEventArgs : EventArgs { public Exception FatalException { get; } public FatalExceptionEventArgs(Exception exception) { if (exception == null) throw new ArgumentNullException("exception"); FatalException = exception; } } }