parent
d61ce3f27c
commit
387f8df0ff
@ -1,9 +1,9 @@
|
|||||||
using NzbDrone.Common.Exceptions;
|
using NzbDrone.Common.Exceptions;
|
||||||
using NzbDrone.Core.Indexers.Cardigann;
|
using NzbDrone.Core.Indexers.Cardigann;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Indexers.Definitions.Cardigann
|
namespace NzbDrone.Core.Indexers.Definitions.Cardigann.Exceptions
|
||||||
{
|
{
|
||||||
public class CardigannConfigException : NzbDroneException
|
public class CardigannConfigException : CardigannException
|
||||||
{
|
{
|
||||||
private readonly CardigannDefinition _configuration;
|
private readonly CardigannDefinition _configuration;
|
||||||
|
|
@ -0,0 +1,32 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using NzbDrone.Common.Exceptions;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Indexers.Definitions.Cardigann.Exceptions
|
||||||
|
{
|
||||||
|
public class CardigannException : NzbDroneException
|
||||||
|
{
|
||||||
|
public CardigannException(string message)
|
||||||
|
: base(message)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public CardigannException(string message, params object[] args)
|
||||||
|
: base(message, args)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public CardigannException(string message, Exception innerException)
|
||||||
|
: base(message, innerException)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public CardigannException(string message, Exception innerException, params object[] args)
|
||||||
|
: base(message, innerException, args)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue