HamBook – Blame information for rev 54

Subversion Repositories:
Rev:
Rev Author Line No. Line
54 office 1 using System;
15 office 2 using System.Windows.Forms;
3  
4 namespace HamBook
5 {
54 office 6 public class DataGridViewRowProgressFailure<T> : DataGridViewRowProgress
15 office 7 {
54 office 8 public T Data { get; }
9  
15 office 10 #region Constructors, Destructors and Finalizers
11  
54 office 12 public DataGridViewRowProgressFailure(DataGridViewRow row, int index, Exception exception) : base(row, index,
13 false)
15 office 14 {
15 Exception = exception;
16 }
17  
54 office 18 public DataGridViewRowProgressFailure(DataGridViewRow row, int index, Exception exception, T data ) : base(row, index, false)
19 {
20 Exception = exception;
21 Data = data;
22 }
23  
15 office 24 #endregion
25  
26 #region Public Enums, Properties and Fields
27  
28 public Exception Exception { get; }
29  
30 #endregion
31 }
32 }