You've already forked Sonarr
mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-07-07 00:59:18 +02:00
16 lines
271 B
C#
16 lines
271 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace NzbDrone.Api.Exceptions
|
||
|
{
|
||
|
public class InvalidApiKeyException : Exception
|
||
|
{
|
||
|
public InvalidApiKeyException()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public InvalidApiKeyException(string message) : base(message)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|