Errors in Ruby

S

Sandor Szuecs

In the following sentence: The raise method is from the Kernel module.
By default, raise creates an exception of the RuntimeError class. = From:
http://rubylearning.com/satishtalim/ruby_exceptions.html
=20
=20
What is meant by raising an exception of the "RunTimeError"? And, if = we
raise it on "ArgumentError", what is mean by that?

irb:0> ArgumentError.ancestors
=3D> [ArgumentError, StandardError, Exception, Object, Kernel]
irb:0> RuntimeError.ancestors
=3D> [RuntimeError, StandardError, Exception, Object, Kernel]
irb:0> RuntimeError.superclass
=3D> StandardError
irb:0> ArgumentError.superclass
=3D> StandardError
irb:0> begin
irb:1* raise "foo"
irb:1> rescue Exception =3D> e
irb:1> puts e.class
irb:1> end
RuntimeError


Hth, Sandor Sz=FCcs
--
 
L

Lars Olsson

In the following sentence: The raise method is from the Kernel module.
By default, raise creates an exception of the RuntimeError class. From:http://rubylearning.com/satishtalim/ruby_exceptions.html

What is meant by raising an exception of the "RunTimeError"? And, if we
raise it on "ArgumentError", what is mean by that?

Thanks.

Hi,

Exceptions are just regular classes in ruby. You can create your own
or use the multitude of built in Exceptions.

Exception are usually very simple classes. The reason why you might
need more than one is differentiation. Sometimes things can go wrong
in more than one way.

begin
# Do stuff that raises an exception
rescue MyFirstException => err
puts "MyFirstException occurred"
rescue MySecondException => err
puts "MySecondException occurred"
end

Usually you can distinguish what an exception is supposed to represent
by its name. RunTimeError is a kind of catch-all error, you can trap
almost every "normal" error using this exception class. An
ArgumentError on the other hand is more specific and is raised when
you try to call methods using the wrong number or type of arguments.

def foo(x, y)
puts x, y
end

foo(3) => raises ArgumentError

/lasso
 
A

Abder-Rahman Ali

Lars said:
Hi,

Exceptions are just regular classes in ruby. You can create your own
or use the multitude of built in Exceptions.

Exception are usually very simple classes. The reason why you might
need more than one is differentiation. Sometimes things can go wrong
in more than one way.

begin
# Do stuff that raises an exception
rescue MyFirstException => err
puts "MyFirstException occurred"
rescue MySecondException => err
puts "MySecondException occurred"
end

Usually you can distinguish what an exception is supposed to represent
by its name. RunTimeError is a kind of catch-all error, you can trap
almost every "normal" error using this exception class. An
ArgumentError on the other hand is more specific and is raised when
you try to call methods using the wrong number or type of arguments.

def foo(x, y)
puts x, y
end

foo(3) => raises ArgumentError

/lasso

Thanks for your reply.

I just want to ask a thing since I'm new to Ruby.

When you say: rescue MyFirstException => err

How do you read this =>

Thanks.
 
L

Lars Olsson

Thanks Sandor.

Hi,

The "=> err" is not really needed, it just makes the error object
available as a variable for further use. Like in:

begin
raise "Killer robots!"
rescue Exception => err
puts "#{err.message} (#{err.class})" # prints 'Killer robots!
(RuntimeError)'
end

/lasso
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,764
Messages
2,569,566
Members
45,041
Latest member
RomeoFarnh

Latest Threads

Top