M
Michael Satterwhite
Assume that I throw an exception in routine A using a string that I built
when I recognized the error.
When routine B receives control on catch, the string from above has gone out
of scope and now has undefined contents. What is the most common method of
solving this problem? I'd rather not use a variable with global scope.
when I recognized the error.
When routine B receives control on catch, the string from above has gone out
of scope and now has undefined contents. What is the most common method of
solving this problem? I'd rather not use a variable with global scope.