FatalExceptionEventArgs
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;
}
}
}