mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 01:23:53 -07: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)
|
|
{
|
|
}
|
|
}
|
|
}
|