mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 14:03:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			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)
 |