Edmer wrote:
Could you please check what is wrong with the following code:
*--- start here ---
PROCEDURE Main
try
? "Base try 0"
try
? "Trying 1"
? "Throwing 1"
throw(1)
catch
...
because it throws me the following compile time errors:
TRY5.PRG(2) Error E0020 Inco
Hi Gurus,
Could you please check what is wrong with the following code:
*--- start here ---
PROCEDURE Main
try
? "Base try 0"
try
? "Trying 1"
? "Throwing 1"
throw(1)
catch
? "Catching 1"
? "Throwing 2, should be deferred until finally 1 is finished."