mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 06:23:38 +00:00
6 lines
169 B
Python
6 lines
169 B
Python
from django.core.exceptions import PermissionDenied
|
|
|
|
class RateLimited(PermissionDenied):
|
|
def __init__(self, msg=""):
|
|
super(RateLimited, self).__init__(msg)
|