mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
22 lines
467 B
C#
22 lines
467 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 => _msg;
|
|
public override string ExtendedDescription => _msg;
|
|
}
|
|
}
|