Relativity.DataExchange.Io.ErrorMessageWriter<T>
Class that is specialized in writing error messages to the error message file.
namespace Relativity.DataExchange.Io
{
public sealed class ErrorMessageWriter<T> : IDisposable where T : IErrorArguments
{
public string FilePath { get; }
public bool FileCreated { get; }
public ErrorMessageWriter(string filePath);
public ErrorMessageWriter();
public void Dispose();
public void WriteErrorMessage(T toWrite);
}
}