SASUnit Examples  Version 1.5.0
_initerrorhandler.sas
Go to the documentation of this file.
1 
17 %MACRO _initErrorHandler;
18 
19  /* global signal for return of error conditions to calling macros programs */
20  %GLOBAL g_error_code;
21  %LET g_error_code=;
22 
23  /* most recent error message */
24  %GLOBAL g_error_msg;
25  %LET g_error_msg=;
26 
27  /* macro program which generated the most recent error */
28  %GLOBAL g_error_macro;
29  %LET g_error_macro=;
30 
31 %MEND _initErrorHandler;