mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-03 21:45:05 +00:00
15 lines
271 B
C#
15 lines
271 B
C#
using System;
|
|
|
|
namespace NzbDrone.Api.Exceptions
|
|
{
|
|
public class InvalidApiKeyException : Exception
|
|
{
|
|
public InvalidApiKeyException()
|
|
{
|
|
}
|
|
|
|
public InvalidApiKeyException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|