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