Horizon – Blame information for rev 5

Subversion Repositories:
Rev:
Rev Author Line No. Line
5 office 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6  
7 namespace Horizon.Snapshots
8 {
9 public class CreateSnapshotProgressFailure : CreateSnapshotProgress
10 {
11 public CreateSnapshotProgressFailure(string file, Exception exception) : base(file,false)
12 {
13 Exception = exception;
14 }
15  
16 public Exception Exception { get; }
17 }
18 }