blob: 0898a7c727201259c3dae8e719759da3cf6a3c51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
namespace Tango.Integration.Operation
{
public class PrintingFailedEventArgs : PrintingEventArgs
{
public Exception Exception { get; private set; }
public PrintingFailedEventArgs(JobHandler jobHandler, Job job, Exception ex) : base(jobHandler, job)
{
Exception = ex;
}
}
}
|