Re: [fpc-pascal] Exception withing exception handling

2012-02-18 Thread Sven Barth
Am 18.02.2012 07:05 schrieb "Chad Berchek" : > > On 2/17/2012 2:26 PM, Sven Barth wrote: >> >> On 17.02.2012 18:36, Jorge Aldo G. de F. Junior wrote: > > >>> so i am inclined to think that exceptions arent supposed to live much >>> longer after their corresponding try except handling block. >>> >>>

Re: [fpc-pascal] Exception withing exception handling

2012-02-17 Thread Chad Berchek
On 2/17/2012 2:26 PM, Sven Barth wrote: On 17.02.2012 18:36, Jorge Aldo G. de F. Junior wrote: so i am inclined to think that exceptions arent supposed to live much longer after their corresponding try except handling block. is that true ? actually, how are exceptions raised ? can i reraise o

Re: [fpc-pascal] Exception withing exception handling

2012-02-17 Thread Sven Barth
On 17.02.2012 18:36, Jorge Aldo G. de F. Junior wrote: I am in the process or writing a interpreter for a specific task (not turing complete, just something to make easier to express something to the computer) and for the erro handling i decided to use plain old exceptions. Code works that way

[fpc-pascal] Exception withing exception handling

2012-02-17 Thread Jorge Aldo G. de F. Junior
I am in the process or writing a interpreter for a specific task (not turing complete, just something to make easier to express something to the computer) and for the erro handling i decided to use plain old exceptions. Code works that way : 1 - Everytime an error occurs, an exception is trigger