mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
8 lines
209 B
Python
8 lines
209 B
Python
from __future__ import absolute_import
|
|
|
|
from django.core.exceptions import PermissionDenied
|
|
|
|
class RateLimited(PermissionDenied):
|
|
def __init__(self, msg=""):
|
|
super(RateLimited, self).__init__(msg)
|