MAL Interest Stacks (#2932)
This commit is contained in:
parent
29eb65c783
commit
b23300b1a4
61 changed files with 4104 additions and 382 deletions
18
Kavita.Common/RateLimitException.cs
Normal file
18
Kavita.Common/RateLimitException.cs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
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) { }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue