2019-12-04 04:12:08 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Wabbajack.Common.StatusFeed.Errors
|
|
|
|
|
{
|
|
|
|
|
class FileExtractionError : AStatusMessage, IError
|
|
|
|
|
{
|
|
|
|
|
private string _filename;
|
|
|
|
|
private string _destination;
|
2020-04-03 23:23:13 +00:00
|
|
|
|
public override string ShortDescription { get; } = string.Empty;
|
|
|
|
|
public override string ExtendedDescription { get; } = string.Empty;
|
2019-12-04 04:12:08 +00:00
|
|
|
|
|
|
|
|
|
public FileExtractionError(string filename, string destination)
|
|
|
|
|
{
|
|
|
|
|
_filename = filename;
|
|
|
|
|
_destination = destination;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|