Re: [Harbour] What is wrong with the following code

2008-05-29 Thread Mindaugas Kavaliauskas
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

[Harbour] What is wrong with the following code

2008-05-29 Thread Edmer
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."