mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
fix exception handling for #1959
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f591e0948a
commit
f5455ce2ac
|
@ -718,7 +718,7 @@ def mk_install_tactic_cpp_internal(h_files_full_path, path):
|
||||||
_logger.error("Failed processing ADD_PROBE command at '{}'\n{}".format(
|
_logger.error("Failed processing ADD_PROBE command at '{}'\n{}".format(
|
||||||
fullname, line))
|
fullname, line))
|
||||||
raise e
|
raise e
|
||||||
except e:
|
except Exception as e:
|
||||||
_loggeer.error("Failed to read file {}\n".format(h_file))
|
_loggeer.error("Failed to read file {}\n".format(h_file))
|
||||||
raise e
|
raise e
|
||||||
# First pass will just generate the tactic factories
|
# First pass will just generate the tactic factories
|
||||||
|
|
Loading…
Reference in a new issue