mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-30 18:24:45 -04: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)
|
|
{
|
|
}
|
|
}
|
|
}
|