naps2/NAPS2.Lib/Operation/OperationErrorEventArgs.cs

17 lines
397 B
C#
Raw Permalink Normal View History

2022-08-21 03:50:38 +03:00
namespace NAPS2.Operation;
/// <summary>
/// Arguments for the IOperation.Error event.
/// </summary>
public class OperationErrorEventArgs : EventArgs
{
public OperationErrorEventArgs(string errorMessage, Exception exception)
{
ErrorMessage = errorMessage;
Exception = exception;
}
public string ErrorMessage { get; }
public Exception Exception { get; }
}