mirror of
				https://github.com/veops/cmdb.git
				synced 2025-10-31 19:39:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			187 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			187 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding:utf-8 -*-
 | |
| 
 | |
| 
 | |
| from werkzeug.exceptions import NotFound, Forbidden, BadRequest
 | |
| 
 | |
| 
 | |
| class CommitException(Exception):
 | |
|     pass
 | |
| 
 | |
| 
 | |
| AbortException = (NotFound, Forbidden, BadRequest)
 |