mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
22 lines
481 B
C#
22 lines
481 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Wabbajack.Common.StatusFeed.Errors
|
|||
|
{
|
|||
|
public class UnconvertedError : AErrorMessage
|
|||
|
{
|
|||
|
private string _msg;
|
|||
|
|
|||
|
public UnconvertedError(string msg)
|
|||
|
{
|
|||
|
_msg = msg;
|
|||
|
}
|
|||
|
|
|||
|
public override string ShortDescription { get => _msg; }
|
|||
|
public override string ExtendedDescription { get; } = "";
|
|||
|
}
|
|||
|
}
|