mirror of https://github.com/jumpserver/jumpserver
				
				
				
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			360 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			360 B
		
	
	
	
		
			Python
		
	
	
| from django.utils.translation import ugettext_lazy as _
 | |
| 
 | |
| from common.exceptions import JMSException
 | |
| 
 | |
| 
 | |
| class BulkCreateNotSupport(JMSException):
 | |
|     default_code = 'bulk_create_not_support'
 | |
|     default_detail = _('Bulk create not support')
 | |
| 
 | |
| 
 | |
| class StorageInvalid(JMSException):
 | |
|     default_code = 'storage_invalid'
 | |
|     default_detail = _('Storage is invalid')
 | |
| 
 |