get_error_text — Inquiry after the error text of a HALCON error number.
get_error_text( : : ErrorCode : ErrorMessage)
The operator get_error_text returns the error message for the
corresponding HALCON error code. This is indeed the same text
which will be given during an exception. The operator
get_error_text is especially useful if the error treatment
is programmed by the users themselves
(see also set_check(::'~give_error':)).
Unknown error codes will trigger a standard message.
ErrorCode (input_control) integer → (integer)
HALCON error code.
Restriction:
1 <= ErrorCode && ErrorCode <= 36000
ErrorMessage (output_control) string → (string)
Corresponding error message.
Herror err;
char message[MAX_STRING];
set_check("~give_error");
err = send_region(region,socket);
set_check("give_error");
if (err != H_MSG_TRUE) {
get_error_text((Hlong)err,message);
fprintf(stderr,"my error message: %s\n",message);
exit(1);
}
The operator get_error_text returns the value 2 (
H_MSG_TRUE)
, if
the parameters are correct.
Otherwise an exception will be raised.
none