In Ruby/Rails, is there a "catch-all" rescue statement that also allows for more specific rescue possibilities? I tried
begin
# something
rescue URI::InvalidURIError
# do something
rescue SocketError
# do something else
rescue
# do yet another thing
end
It turns out that even when there's URI::InvalidURIError or SocketError, it goes into the last rescue (i.e. it executes do yet another thing.) I want it to do something, or do something else, respectively.
URI::InvalidURIErrororSocketErroris raised it goes into the lastrescue—that's just not how Ruby works. Second, you want something that gets everything else, but is specific? Not sure if that even makes semantic sense, as a catch-all is, by definition, non-specific. – Andrew Marshall Nov 24 '12 at 21:53Rails.logger.error(!$)or change the rescue torescue => e, thenRails.logger.error(e). It'll show up in your log. Or, go ahead and reraise it so it's not caught at all byraise $!in the block. – numbers1311407 Nov 24 '12 at 23:01