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

  • Home
  • SEARCH
  • 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 4265690
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T06:39:30+00:00 2026-05-21T06:39:30+00:00

I have tons of methods like this: def lab1 setup business_processing rescue Exception =>

  • 0

I have tons of methods like this:

def lab1
  setup
  business_processing
rescue Exception => e
  handle_error('custom error message for lab1', e)
end

def lab2
  setup
  business_processing
rescue Exception => e
  handle_error('custom errror message for lab2', e)
end

I refactored the code above into something like this:

def lab1
  with_setup_and_error_handling do
    @error_message = 'error in lab1'
    business_processing
  end
end

def with_setup_and_error_handling(&block)
  setup
  block.call
rescue Exception => e
  handle_error(@error_message, e)
end

The new code works but it causes error_message to be an instance variable. Is there a better way to refactor it?

When someone looks at the refactored code they see the instance variable, but it is not clear where it is being used so I am not happy with it.

  • 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-05-21T06:39:31+00:00Added an answer on May 21, 2026 at 6:39 am

    Put the error message to be a argument of de setup method:

    def lab1
      with_setup_and_error_handling('error in lab1') do
        business_processing
      end
    end
    
    def with_setup_and_error_handling(error_message, &block)
      setup
      block.call
    rescue Exception => e
      handle_error(error_message, e)
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So this has just been driving me nuts! I have looked through tons of
How cheap can MySQL be compared to MS SQL when you have tons of
For our online game, we have written tons of PHP classes and functions grouped
I have a long URL with tons of parameters that I want to open
I have a main TCL proc that sources tons of other tcl procs in
I have inherited a load of VB6 code which has tons of individual OCX
Okay, here's the scenario. I have a utility that processes tons of records, and
Have you ever seen any of there error messages? -- SQL Server 2000 Could
I'm currently refactoring a class which currently looks something like this: class SomeModel {
I'd like to write a MessageConverter class that can wrap another MessageConverter. This MessageConverter

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.