mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-20 14:42:07 +01:00
16 lines
284 B
C#
16 lines
284 B
C#
using System;
|
|
|
|
namespace Prowlarr.Http.Exceptions
|
|
{
|
|
public class InvalidApiKeyException : Exception
|
|
{
|
|
public InvalidApiKeyException()
|
|
{
|
|
}
|
|
|
|
public InvalidApiKeyException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|