N
AME
error
- throw an error
S
YNTAX
#include "error.h"
void error(char *
format_string
, ...);
D
ESCRIPTION
This function takes the same kind of arguments as printf, puts it all together to a string and throws this as an error message togehter with a backtrace that tells the catcher where the error was. Note that this function does _not_ return. Instead it calls the C function lonjump and continues executing from the most resent active catch() call.
K
EYWORDS
error_handling
S
EE
A
LSO
SET_ONERROR
,
fatal
and
throw