Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8882101
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T20:29:36+00:00 2026-06-14T20:29:36+00:00

In Ruby/Rails, is there a catch-all rescue statement that also allows for more specific

  • 0

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.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T20:29:37+00:00Added an answer on June 14, 2026 at 8:29 pm
    require 'uri'
    require 'socket'
    
    Errors = [URI::InvalidURIError, SocketError]
    a = lambda { |e=nil|
                 begin
                   raise e unless e.nil? 
                 rescue URI::InvalidURIError
                   puts "alligator"
                 rescue SocketError
                   puts "crocodile"
                 rescue
                   puts "vulture"
                 else
                   puts "rhino"
                 end }
    

    Now try

    a.( Errors[ 0 ] )
    a.( Errors[ 1 ] )
    a.call
    

    It will behave exactly as you need. If your code above doesn’t work, then something else is going on in your program than you think.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there an equivalent to the collection.build command in Ruby on Rails that builds
Is there any state machine implementation for Ruby or Ruby on Rails that supports
Is there a Ruby/Rails library that I can generate word clouds (output should be
I've found a couple of different twitter gem (for ruby-on-rails) out there: http://twitter4r.rubyforge.org/ http://twitter.rubyforge.org/
Is there a Rails/Ruby idiom for checking if an enumerable is both present and
Is there any ruby gem/ rails plugin available for parsing the resume and importing
With Ruby on Rails, is there a way for me to dump my production
Are there any visitor statistics solutions for Ruby on Rails? I'm talking something like
Is there an equivalent of htmlspecialchars_decode (PHP) in Ruby (for a Ruby-on-Rails application) Or
I'm new to Ruby on Rails world. I noticed there is at least one

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.