namespace NAPS2.Operation; /// /// Arguments for the IOperation.Error event. /// public class OperationErrorEventArgs : EventArgs { public OperationErrorEventArgs(string errorMessage, Exception exception) { ErrorMessage = errorMessage; Exception = exception; } public string ErrorMessage { get; } public Exception Exception { get; } }