18

Игнорируем исключения в блоке кода

def ignore_exception
  begin
    yield  
  rescue Exception
  end
end
ignore_exception do
  puts "Ignoring Exception"
  raise Exception
  puts "This is Ignored"
end
puts "This is NOT ignored"
Ignoring Exception
This is NOT ignored
-----------