Horizon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Drawing;
3  
4 namespace Horizon.Database
5 {
6 public class SnapshotCreateFailureEventArgs : SnapshotCreateEventArgs
7 {
8 #region Constructors, Destructors and Finalizers
9  
10 public SnapshotCreateFailureEventArgs(string name, string path, Color color, Exception ex) : base(name, path,
11 color, false)
12 {
13 Exception = ex;
14 }
15  
16 #endregion
17  
18 #region Public Enums, Properties and Fields
19  
20 public Exception Exception { get; }
21  
22 #endregion
23 }
24 }