mirror of
https://github.com/Z3Prover/z3
synced 2025-04-04 16:44:07 +00:00
13 lines
320 B
Python
13 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)
|
|
|