mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
18 lines
370 B
C#
18 lines
370 B
C#
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Indexers.Exceptions
|
|
{
|
|
public class ApiKeyException : NzbDroneException
|
|
{
|
|
public ApiKeyException(string message, params object[] args)
|
|
: base(message, args)
|
|
{
|
|
}
|
|
|
|
public ApiKeyException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|