3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

ex handler

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-10-27 09:38:36 +02:00
parent 125eae06bd
commit eb8c8da8a7

View file

@ -304,7 +304,7 @@ void error_example() {
// The next call fails because x is a Boolean. // The next call fails because x is a Boolean.
expr n = x + 1; expr n = x + 1;
} }
catch (exception ex) { catch (exception & ex) {
std::cout << "failed: " << ex << "\n"; std::cout << "failed: " << ex << "\n";
} }
@ -312,7 +312,7 @@ void error_example() {
try { try {
expr arg = to_expr(c, Z3_get_app_arg(c, x, 0)); expr arg = to_expr(c, Z3_get_app_arg(c, x, 0));
} }
catch (exception ex) { catch (exception & ex) {
std::cout << "failed: " << ex << "\n"; std::cout << "failed: " << ex << "\n";
} }
} }