get_error_msg method
\brief Return a string describing the given error code.
def_API('Z3_get_error_msg', STRING, (_in(CONTEXT), _in(ERROR_CODE)))
Implementation
Z3_string get_error_msg(
Z3_context c,
int err,
) {
return _get_error_msg(
c,
err,
);
}