Rescue blocks always not required to use with ‘begin.’ If you are going to use only begin and rescue block in the method, then you can skip the begin.
Don’ts
def x "a" + 1 rescue puts "implicit conversion of Fixnum into String" end
Do’s
def x begin "a" + 1 rescue puts "implicit conversion of Fixnum into String" end end
Leave a Reply