Horizon – Blame information for rev 4

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  
16 #endregion
17  
18 #region Public Enums, Properties and Fields
19  
20 public Exception Exception { get; }
21  
22 #endregion
23 }
24 }