mirror of
				https://github.com/Z3Prover/z3
				synced 2025-10-31 19:52:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			320 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			320 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| ############################################
 | |
| # Copyright (c) 2012 Microsoft Corporation
 | |
| # 
 | |
| # Author: Leonardo de Moura (leonardo)
 | |
| ############################################
 | |
| 
 | |
| class MKException(Exception):
 | |
|     def __init__(self, value):
 | |
|         self.value = value
 | |
|     def __str__(self):
 | |
|         return repr(self.value)
 | |
| 
 |