naps2/NAPS2.Lib/Operation/OperationErrorEventArgs.cs
2022-08-20 17:50:38 -07:00

17 lines
397 B
C#

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