mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 22:13:26 +00:00
Seems like a more appropriate place for it. Preparation for moving a bit more into that file.
9 lines
239 B
Python
9 lines
239 B
Python
from __future__ import absolute_import
|
|
|
|
from django.core.exceptions import PermissionDenied
|
|
|
|
class RateLimited(PermissionDenied):
|
|
def __init__(self, msg=""):
|
|
# type: (str) -> None
|
|
super(RateLimited, self).__init__(msg)
|