Update 2025-04-24_11:44:19
This commit is contained in:
27
venv/lib/python3.11/site-packages/slowapi/errors.py
Normal file
27
venv/lib/python3.11/site-packages/slowapi/errors.py
Normal file
@ -0,0 +1,27 @@
|
||||
"""
|
||||
errors and exceptions
|
||||
"""
|
||||
|
||||
from starlette.exceptions import HTTPException
|
||||
|
||||
from .wrappers import Limit
|
||||
|
||||
|
||||
class RateLimitExceeded(HTTPException):
|
||||
"""
|
||||
exception raised when a rate limit is hit.
|
||||
"""
|
||||
|
||||
limit = None
|
||||
|
||||
def __init__(self, limit: Limit) -> None:
|
||||
self.limit = limit
|
||||
if limit.error_message:
|
||||
description: str = (
|
||||
limit.error_message
|
||||
if not callable(limit.error_message)
|
||||
else limit.error_message()
|
||||
)
|
||||
else:
|
||||
description = str(limit.limit)
|
||||
super(RateLimitExceeded, self).__init__(status_code=429, detail=description)
|
Reference in New Issue
Block a user