wabbajack/Wabbajack.Common/StatusFeed/AErrorMessage.cs

17 lines
462 B
C#
Raw Normal View History

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
{
public abstract class AErrorMessage : Exception, IException
2019-12-04 04:12:08 +00:00
{
public DateTime Timestamp { get; } = DateTime.Now;
public abstract string ShortDescription { get; }
public abstract string ExtendedDescription { get; }
Exception IException.Exception => this;
2019-12-04 04:12:08 +00:00
}
}