wabbajack/Wabbajack.Common/StatusFeed/IException.cs

14 lines
252 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Wabbajack.Common.StatusFeed
{
public interface IException : IError
{
Exception Exception { get; }
}
}