mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Initial commit
This commit is contained in:
19
src/Jackett/ExceptionWithConfigData.cs
Normal file
19
src/Jackett/ExceptionWithConfigData.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Jackett
|
||||
{
|
||||
|
||||
public class ExceptionWithConfigData : Exception
|
||||
{
|
||||
public ConfigurationData ConfigData { get; private set; }
|
||||
public ExceptionWithConfigData(string message, ConfigurationData data)
|
||||
: base(message)
|
||||
{
|
||||
ConfigData = data;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user