NAPS2.Operation.OperationErrorEventArgs.OperationErrorEventArgs C# (CSharp) Method

OperationErrorEventArgs() public method

public OperationErrorEventArgs ( string errorMessage, Exception exception ) : System
errorMessage string
exception System.Exception
return System
        public OperationErrorEventArgs(string errorMessage, Exception exception)
        {
            ErrorMessage = errorMessage;
            Exception = exception;
        }
OperationErrorEventArgs