QuickImage – Rev 1
?pathlinks?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QuickImage
{
public class FileProgressFailure : FileProgress
{
public FileProgressFailure(string file, Exception exception) : base(file, Enumerable.Empty<string>(), null, false)
{
Exception = exception;
}
public Exception Exception { get; }
}
}