我有以下代碼:如何檢查Rails 3.x中錯誤處理的特定救援條款?
begin
site = RedirectFollower.new(url).resolve
rescue => e
puts e.to_s
return false
end
會拋出這樣的錯誤:
the scheme http does not accept registry part: www.officedepot.com;
the scheme http does not accept registry part: ww2.google.com/something;
Operation timed out - connect(2)
如何添加在其他救援對所有錯誤就像一樣?
因爲我想要做的不僅僅是印刷錯誤,在這種情況下返回false,其他的東西。