Use Rescue Blocks Properly

by

in

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

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *