mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +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)
 |