mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 14:13:23 +00:00
checkpoint
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
e7e5d4c5bb
commit
efff6db567
25 changed files with 636 additions and 306 deletions
12
scripts/mk_exception.py
Normal file
12
scripts/mk_exception.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
############################################
|
||||
# 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)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue