mirror of
https://github.com/Jackett/Jackett.git
synced 2025-10-03 00:47:21 +02:00

Really hope I don't break anything with this Went to have a go at .NET core and it just became too confusing for me with 'Jackett' namespace referring to both Jackett.Common and Jackett
18 lines
381 B
C#
18 lines
381 B
C#
using System;
|
|
using Jackett.Common.Models.IndexerConfig;
|
|
|
|
namespace Jackett.Common
|
|
{
|
|
|
|
public class ExceptionWithConfigData : Exception
|
|
{
|
|
public ConfigurationData ConfigData { get; private set; }
|
|
public ExceptionWithConfigData(string message, ConfigurationData data)
|
|
: base(message)
|
|
{
|
|
ConfigData = data;
|
|
}
|
|
|
|
}
|
|
}
|