Jackett/src/Jackett.Common/ExceptionWithConfigData.cs

18 lines
381 B
C#
Raw Normal View History

using System;
using Jackett.Common.Models.IndexerConfig;
2015-04-13 06:25:21 +00:00
namespace Jackett.Common
2015-04-13 06:25:21 +00:00
{
public class ExceptionWithConfigData : Exception
{
public ConfigurationData ConfigData { get; private set; }
public ExceptionWithConfigData(string message, ConfigurationData data)
: base(message)
{
ConfigData = data;
}
2015-07-14 19:07:55 +00:00
}
2015-04-13 06:25:21 +00:00
}