Reraise (same exception) after catching an exception in Ruby

RubyException

Ruby Problem Overview


I am trying to improve my Ruby skills by catching exceptions. I want to know if it is common to reraise the same kind of exception when you have several method calls. So, would the following code make sense? Is it ok to reraise the same kind of exception, or should I not catch it on the process method?

class Logo
  def process
    begin
      @processed_logo = LogoProcessor::create_image(self.src)
    rescue CustomException
      raise CustomException
    end
  end
end

module LogoProcessor
  def self.create_image
    raise CustomException if some_condition
  end
end

Ruby Solutions


Solution 1 - Ruby

Sometimes we just want to know an error happened, without having to actually handle the error.

It is often the case that the one responsible for handling errors is user of the object: the caller. What if we are interested in the error, but don't want to assume that responsibility? We rescue the error, do whatever we need to do and then propagate the signal up the stack as if nothing had happened.

For example, what if we wanted to log the error message and then let the caller deal with it?

begin
  this_will_fail!
rescue Failure => error
  log.error error.message
  raise
end

Calling raise without any arguments will raise the last error. In our case, we are re-raising error.

In the example you presented in your question, re-raising the error is simply not necessary. You could simply let it propagate up the stack naturally. The only difference in your example is you're creating a new error object and raising it instead of re-raising the last one.

Solution 2 - Ruby

This will raise the same type of error as the original, but you can customize the message.

rescue StandardError => e
  raise e.class, "Message: #{e.message}"

Solution 3 - Ruby

A slightly better way to do the same thing as FreePender is to use the exception method from the Exception class, which is the ancestor class to any error classes, like StandardError, so that the method is available to any error classes.

Here the method's documentation that you can find on ApiDock:

> With no argument, or if the argument is the same as the receiver, return the receiver. Otherwise, create a new exception object of the same class as the receiver, but with a message equal to string.to_str.

Now let's see how it works:

begin
  this_will_fail!
rescue Failure => error
  raise error.exception("Message: #{error.message}")
end

Solution 4 - Ruby

I had the same question as in the comment thread here, i.e. What if the line before (re)raise fails?

My understanding was limited by the missing knowledge that the global variable of $! is "kinda garbage collected" // "scoped to its functional context", which the below example demonstrates:

def func
  begin
    raise StandardError, 'func!'
  rescue StandardError => err
    puts "$! = #{$!.inspect}"
  end
end

begin
  raise StandardError, 'oh no!'
rescue StandardError => err
  func
  puts "$! = #{$!.inspect}"
  raise
end

The output of the above is:

$! = #<StandardError: func!>
$! = #<StandardError: oh no!>
StandardError: oh no!
from (pry):47:in `__pry__'

This behavior is different than how Python's (re)raise works.

The documentation for Exception states:

> When an exception has been raised but not yet handled (in rescue, > ensure, at_exit and END blocks), two global variables are set: > > - $! contains the current exception. > - $@ contains its backtrace.

So these variables aren't true global variables, they are only defined inside the block that's handling the error.

begin
  raise
rescue
  p $!  # StandardError
end

p $!    # nil

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionHommer SmithView Question on Stackoverflow
Solution 1 - RubyMatheus MoreiraView Answer on Stackoverflow
Solution 2 - RubyFreePenderView Answer on Stackoverflow
Solution 3 - RubyZedTuXView Answer on Stackoverflow
Solution 4 - Rubyuser2426679View Answer on Stackoverflow