RegName – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2  
3 namespace RegName
4 {
5 public class RenameProgressFailure : RenameProgress
6 {
7 #region Public Enums, Properties and Fields
8  
9 public Exception Exception { get; }
10  
11 #endregion
12  
13 #region Constructors, Destructors and Finalizers
14  
15 public RenameProgressFailure(int index, Exception ex) : base(index)
16 {
17 Exception = ex;
18 }
19  
20 #endregion
21 }
22 }