EnumeratedPathErrorEventArgs
using System;
namespace Relativity.
Transfer
{
public class EnumeratedPathErrorEventArgs :
EventArgs
{
public Exception Error { get; }
public string Path { get; }
public EnumeratedPathErrorEventArgs(
string path,
Exception error)
{
Path =
path;
Error =
error;
}
}
}