Forum Discussion

william_diaz's avatar
william_diaz
Occasional Contributor
13 years ago

Testcomplete 9.2 JScript Exception handling question.

I have the following code.     try     {       throw new Error("error...");     }     catch (e)     {       Log.Message( "Exception caught");        } This works as ...