get_error_msg method

Z3_string get_error_msg(
  1. Z3_context c,
  2. int err
)

\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,
  );
}