That line states, rescues the code within the begin-rescue block whenever it throws an Exception with type Exception. It just so turns out that Exception is the top level exception that all other exceptions inherit from(Such as syntax error, No method error etc). Because of this, all exceptions will be rescued. It then stores that exception instance in the variable ex in which you can look at further(such as the backtrace, message etc).
I'd read this guide on Ruby Exceptions.
An example would be this:
begin
hey "hi"
rescue Exception => ex
puts ex.message
end
#=> Prints undefined method `hey' for main:Object
However, if the code within the begin block gives no error, it will not go down the rescue branch.
begin
puts "hi"
rescue Exception => ex
puts "ERROR!"
end
#=> Prints "hi", and does not print ERROR!