Horizon – Blame information for rev 21

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