Home
Map
Exception ExamplesHandle exceptions: use begin, rescue and ensure to enter protected regions.
Ruby
This page was last reviewed on Jan 30, 2024.
Exceptions. In Ruby we handle errors with the begin, rescue and ensure keywords. We use raise to cause trouble. With begin, we enter protected blocks.
Placing statements in begin and rescue blocks is a good way to test them. You can accurately discover what exception they are causing, and where it occurs.
Example. An exception is raised when you divide by zero. That is why you should never divide by zero—also it makes no sense. But sometimes these conditions are hard to avoid.
Note A Ruby program would normally terminate when the ZeroDivisionError is encountered.
However If you enclose the division statement in a begin block, we have an opportunity to catch or "rescue" the error.
Here In this program we rescue an invalid division expression. We set the result to zero.
# Enter a protected region. begin # Try to divide by zero. i = 1 / 0 rescue ZeroDivisionError # Handle the error. puts "ERROR" i = 0 end # Display final value. puts i
ERROR 0
Else. Many constructs in Ruby allow an optional "else" statement. Begin and rescue also allow "else." Code in the "else" block is executed only if no errors occur within the "begin" block.
Note Usually a message that states no errors occurred is not needed, but it works well for demonstration.
Tip In real programs, exceptions usually should not be the "normal" case. Normal operation should have no exceptional events.
divisor = 2 begin reciprocal = 1 / divisor rescue reciprocal = 0 else # This is reached when no error is encountered in "begin." puts "NO ERROR" end puts reciprocal
NO ERROR 0
Raise. Here we use the "raise" statement to raise an exception. We specify a string argument, so the exception we create is of type RuntimeError. And we specify this in the rescue block.
Detail Raise can create an exception of any type. We can specify the type as the first argument to "raise."
begin # This is a bad program. raise "Bad program error" rescue RuntimeError => e # This prints the error message. puts e end
Bad program error
Reraise. In exception handling, we often want to allow an exception to pass through a "rescue" block. This is called "reraising" the exception.
And With a raise statement, with no argument, the present exception is raised again.
However We trigger an IndexError. And then, in the "rescue" block, we reraise it. We then rescue it at the method's calling location.
def problem(n) begin raise IndexError, n if n < 0 rescue # Reraise this error. raise end end # Call the problem method. begin problem(-1) rescue IndexError # Handle the re-raised error. puts "IndexError encountered!" end
IndexError encountered!
Catch, throw. Catch and throw provide an alternative flow, one controlled by labels. We prefix these labels with a colon, as by ":label." In a catch block, we place statements.
Important If a throw occurs within the statements in a catch block, the catch block is exited.
Tip With throw and catch, the labels are matched. In many ways these statements act like "goto" but can pass method boundaries.
Also For nested loops and method calls, catch and throw can be useful. With them we can reduce the need for flag variables to direct flow.
def method(a) puts a # Throw on a negative number. if a < 0 throw :negative end end # These statements continue until :negative is thrown. catch :negative do method(0) method(-1) puts "NOT REACHED" end puts "END"
0 -1 END
Retry. The retry statement is placed in a rescue block. When retry is reached, the begin statement is entered again. This acts like a "go to" operation.
Note We usually change variables or an external file before retrying. We attempt to correct the program's state.
denominator = 0 begin # Divide with the denominator integer. result = 1 / denominator puts(result) rescue # Change denominator to 1 and try again. puts("Rescuing") denominator = 1 retry end
Rescuing 1
Ensure. Statements in an ensure block are always executed. We add an ensure clause at the end of an exception-handling block. The ensure is run regardless of whether an error is raised.
Tip An ensure block can be used to perform some cleanup (like deleting a temporary file). It can display a completion message.
y = 10 begin x = 100 / y puts "In begin..." rescue # This is not reached. puts "In rescue..." ensure # Do some cleanup. puts "In ensure..." end
In begin... In ensure...
Benchmark. There is a cost to raising an exception. And usually it is faster to try to prevent exceptions from occurring. Here I tried to time an exception: the ZeroDivisionError.
Version 1 This code runs a loop 50,000 times. Every 5 iterations, an exception is raised. We handle it with rescue.
Version 2 This code checks the iterator variable "x" against zero each time. It handles zero with a special case.
Iterator
Result It is faster, for a frequent error, to test values with an if-statement. Raising the exception is slower.
n1 = Time.now.usec # Version 1: use begin, rescue. 50000.times do 5.times do |x| begin i = 1 / x rescue i = 0 end end end n2 = Time.now.usec # Version 2: use if, else. 50000.times do 5.times do |x| if x == 0 i = 0 else i = 1 / x end end end n3 = Time.now.usec # Compute milliseconds total. puts ((n2 - n1) / 1000) puts ((n3 - n2) / 1000)
171 ms begin/rescue 15 ms if/else
Summary. Exception handling is critical. It is often the difference between a useless program that cannot be deployed, and one that is effective (or at least limps along).
Dot Net Perls is a collection of tested code examples. Pages are continually updated to stay current, with code correctness a top priority.
Sam Allen is passionate about computer languages. In the past, his work has been recommended by Apple and Microsoft and he has studied computers at a selective university in the United States.
This page was last updated on Jan 30, 2024 (edit).
Home
Changes
© 2007-2024 Sam Allen.