joe
August 16, 2006, 4:26am
#1
Is there some way to do this in Ruby?
begin
do stuff, uh-oh an exception gets raised
rescue
retry next
end
There’s ‘retry’ which returns to the same statement that threw the
exception, but I’d like execution to resume at the next statement
following it.
Thanks,
Joe
joe
August 16, 2006, 5:22am
#2
There’s ‘retry’ which returns to the same statement that threw the
exception, but I’d like execution to resume at the next statement
following it.
not_tried_before = true
begin
do_dangerous_stuff if not_tried_before
rescue
not_tried_before = false
retry
end
Max
joe
August 16, 2006, 6:01am
#3
On Aug 15, 2006, at 10:26 PM, Joe R. wrote:
following it.
Thanks,
Joe
–
Posted via http://www.ruby-forum.com/ .
If you know only expression X will raise the exception you can use
the modifier form
some_code
some_exception_raising_call rescue nil # This is evil
continue_blissfully_unaware_of_whether_an_exception_was_raised
Also retry does not return to the statement that raised the
exception, it jumps to the begin
begin
retry will put you here
some_code
some_more_code
raise_an_exception
even_more_code
rescue
retry
end
joe
August 16, 2006, 6:49am
#5
On Aug 16, 2006, at 12:41 AM, Joe R. wrote:
Logan C. wrote:
some_exception_raising_call rescue nil # This is evil
Why is that evil?
Joe
–
Posted via http://www.ruby-forum.com/ .
Cause you can’t specify which exceptions to catch with that form.
Someday something terrible could happen inside
some_exception_raising_call that you do want to know about but
it’ll just get thrown away by the rescue nil.
joe
August 16, 2006, 6:52am
#6
Joe R. wrote:
Logan C. wrote:
some_exception_raising_call rescue nil # This is evil
Why is that evil?
Joe
Because if something goes wrong in that call, you will get no
information about it. Won’t even know it happened.
-Justin
joe
August 16, 2006, 7:23am
#7
Justin C. wrote:
Joe R. wrote:
Logan C. wrote:
some_exception_raising_call rescue nil # This is evil
Why is that evil?
Joe
Because if something goes wrong in that call, you will get no
information about it. Won’t even know it happened.
-Justin
Yeah, but rescue nil is just usually to deal with null values from the
database, for example, which isn’t a big deal.
Joe
joe
August 16, 2006, 8:28am
#8
Joe R. wrote:
Why is that evil?
Yeah, but rescue nil is just usually to deal with null values from the
database, for example, which isn’t a big deal.
Jo
Using rescue this way will rescue all exceptions, but simply return nil.
Examples:
irb(main):001:0> puts a rescue nil
=> nil
irb(main):002:0> puts “asiodhasd”.asdiajsd rescue nil
=> nil
irb(main):003:0> asdi.asdiojas.asidjas.asdihja.asdijasd rescue nil
=> nil
irb(main):004:0>
It’s better, as I think Logan was implying, to rescue a specific
exception if you are expecting it. That way, you will see if other
exceptions occur.
Sorry if I misunderstood your reply.
-Justin
joe
August 16, 2006, 9:58pm
#9
Aaahhh…all this time I thought I was rescuing nil rather than rescuing
everything and returning nil!
Joe