How to Use The “Begin” & “Rescue” Keywords in Ruby
A common problem in Ruby is that you get error messages, which in technical terms we call “exceptions”. These exceptions can be expected, like a file that may be available sometimes but missing in others, or an API that is only available temporarily due to some restrictions, or they can be unexpected. Today you’ll learn … Read more