mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-29 02:57:15 +02:00
18 lines
409 B
C#
18 lines
409 B
C#
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Indexers.Exceptions
|
|
{
|
|
public class RequestLimitReachedException : NzbDroneException
|
|
{
|
|
public RequestLimitReachedException(string message, params object[] args)
|
|
: base(message, args)
|
|
{
|
|
}
|
|
|
|
public RequestLimitReachedException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|