mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
19 lines
360 B
C#
19 lines
360 B
C#
using System;
|
|
|
|
namespace Kavita.Common;
|
|
|
|
/// <summary>
|
|
/// When a rate limit is hit
|
|
/// </summary>
|
|
public class RateLimitException : Exception
|
|
{
|
|
public RateLimitException()
|
|
{ }
|
|
|
|
public RateLimitException(string message) : base(message)
|
|
{ }
|
|
|
|
public RateLimitException(string message, Exception inner)
|
|
: base(message, inner) { }
|
|
}
|