mirror of
				https://github.com/langgenius/dify.git
				synced 2025-11-04 04:43:09 +00:00 
			
		
		
		
	Co-authored-by: Nicolas <nicolascamara29@gmail.com> Co-authored-by: chenhe <guchenhe@gmail.com> Co-authored-by: takatost <takatost@gmail.com>
		
			
				
	
	
		
			8 lines
		
	
	
		
			171 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			171 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from libs.exception import BaseHTTPException
 | 
						|
 | 
						|
 | 
						|
class ApiKeyAuthFailedError(BaseHTTPException):
 | 
						|
    error_code = 'auth_failed'
 | 
						|
    description = "{message}"
 | 
						|
    code = 500
 |