Horizon – Rev 5

Subversion Repositories:
Rev:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Horizon.Snapshots
{
    public class CreateSnapshotProgressFailure : CreateSnapshotProgress
    {
        public CreateSnapshotProgressFailure(string file, Exception exception) : base(file,false)
        {
            Exception = exception;
        }

        public Exception Exception { get; }
    }
}