mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 20:44:00 +02:00
24 lines
551 B
C#
24 lines
551 B
C#
using System;
|
|
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.IndexerProxies.FlareSolverr
|
|
{
|
|
public class FlareSolverrException : NzbDroneException
|
|
{
|
|
public FlareSolverrException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public FlareSolverrException(string message, params object[] args)
|
|
: base(message, args)
|
|
{
|
|
}
|
|
|
|
public FlareSolverrException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|