HamBook – Blame information for rev 15

Subversion Repositories:
Rev:
Rev Author Line No. Line
15 office 1 using HamBook;
2 using System;
3 using System.Windows.Forms;
4  
5 namespace HamBook
6 {
7 public class DataGridViewRowProgressFailure : DataGridViewRowProgress
8 {
9 #region Constructors, Destructors and Finalizers
10  
11 public DataGridViewRowProgressFailure(DataGridViewRow row, int index, Exception exception) : base(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 }