HamBook – Blame information for rev 56

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  
56 office 10 #region Public Enums, Properties and Fields
11  
12 public Exception Exception { get; }
13  
14 #endregion
15  
15 office 16 #region Constructors, Destructors and Finalizers
17  
54 office 18 public DataGridViewRowProgressFailure(DataGridViewRow row, int index, Exception exception) : base(row, index,
19 false)
15 office 20 {
21 Exception = exception;
22 }
23  
56 office 24 public DataGridViewRowProgressFailure(DataGridViewRow row, int index, Exception exception, T data) : base(row,
25 index, false)
54 office 26 {
27 Exception = exception;
28 Data = data;
29 }
30  
15 office 31 #endregion
32 }
33 }