Re: Exceptions ( catching and handeling).

2001-06-25 Thread Me
> On Mon, Jun 25, 2001 at 12:12:19AM -0500, Me wrote: > > > $done="false"; > > > > > > while( $done eq "false ") { > > > eval { > > > .. > > > . > > > read form files. > > > process info... > > > write back to files > > > > > > }; > > >

Re: Exceptions ( catching and handeling).

2001-06-25 Thread Paul Johnson
On Mon, Jun 25, 2001 at 12:12:19AM -0500, Me wrote: > > $done="false"; > > > > while( $done eq "false ") { > > eval { > > .. > > . > > read form files. > > process info... > > write back to files > > > > }; > > ( $@ ) ? ($done="fals

Re: Exceptions ( catching and handeling).

2001-06-24 Thread Rajeev Rumale
D]> Sent: Monday, June 25, 2001 1:12 PM Subject: Re: Exceptions ( catching and handeling). > > $done="false"; > > > > while( $done eq "false ") { > > eval { > > .. > > . > > read form files. > >

Re: Exceptions ( catching and handeling).

2001-06-24 Thread Me
> $done="false"; > > while( $done eq "false ") { > eval { > .. > . > read form files. > process info... > write back to files > > }; > ( $@ ) ? ($done="false") : ($done="true"); > > } I don't understand why this isn't working. Cha

Re: Exceptions ( catching and handeling).

2001-06-24 Thread Michael Fowler
On Mon, Jun 25, 2001 at 11:29:16AM +0800, Rajeev Rumale wrote: > $done="false"; > > while( $done eq "false ") { > eval { > .. > . > read form files. > process info... > write back to files > > }; > ( $@ ) ? ($done="false") : ($done=

Re: Exceptions ( catching and handeling).

2001-06-24 Thread Rajeev Rumale
PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, June 25, 2001 10:51 AM Subject: Re: Exceptions ( catching and handeling). > On Mon, Jun 25, 2001 at 09:46:06AM +0800, Rajeev Rumale wrote: > > But I am not getting the proper values in $@ variable. > > What do you mean you&#

Re: Exceptions ( catching and handeling).

2001-06-24 Thread Michael Fowler
On Mon, Jun 25, 2001 at 09:46:06AM +0800, Rajeev Rumale wrote: > But I am not getting the proper values in $@ variable. What do you mean you're not getting the proper values in $@? What values are you getting, what are you expecting? > I would be greatfull if any one can explain the correct us