The Ruby keyword for catching exceptions.

learn more… | top users | synonyms

0
votes
0answers
20 views

Rescue all errors of a specific type inside a module

I have a module in which I am performing all of my encryption/decryption tasks for a project. I would like to catch any OpenSSL::Cipher::CipherError exceptions that occur in this module so that I can ...
1
vote
1answer
41 views

Catching exceptions while using an external gem

I have written a program that utilizes an external ruby gem. As I am doing a lot of different actions with this, I want to be able to rescue and handle exceptions across the board, instead of ...
0
votes
1answer
56 views

Exception is only caught with `rescue` at the end of the line but not when using a `begin rescue` block

I have a statement that fails: result = service.load_data() Now the following suppresses the error and I can then check for nil result = service.load_data() rescue nil But when I do the ...
1
vote
1answer
64 views

Retry testing sites after timeout error in Watir

I am going through a list of sites and going to each one using Watir to look for something in the source code of each page. However, after about 20 or 30 sites, the browser times out when loading a ...
1
vote
1answer
26 views

Can I assert inside a begin rescue end block?

I have something that I am testing that I will know its working if it fails. Is there a better way to code this in ruby with test-unit than what I have in my example below? begin x = ...
0
votes
1answer
60 views

Catching errors with Ruby Twitter gem, caching methods using delayed_job: What am I doing wrong?

What I'm doing I'm using the twitter gem (a Ruby wrapper for the Twitter API) in my app, which is run on Heroku. I use Heroku's Scheduler to periodically run caching tasks that use the twitter gem ...
3
votes
1answer
135 views

How to Rescue from ActionDispatch::ParamsParser::ParseError in Rails 4

Rails 4 adds an exception ActionDispatch::ParamsParser::ParseError exception but since its in the middleware stack it appears it can't be rescued in the normal controller environment. In a json API ...
1
vote
2answers
81 views

Ruby Oneline Rescue

I recently learned that you can use rescue on a line of code in case something goes wrong on that line (see http://www.rubyinside.com/21-ruby-tricks-902.html Tip #21). I have some code that used to ...
0
votes
2answers
72 views

How to catch and ignore ActiveRecord::RecordNotUnique exception in Ruby

I had ruby script job running daily for loading data from one table to another until there were duplicate key records found in the source table since that table had no constraints. My target table ...
0
votes
2answers
75 views

Multiple Rescue Statements in Rails Create Not Working

I am using open-uri and the seeds.db file. I'm trying to run the following code using "rake db:seed --trace": CSV.foreach("vendor/users1.csv", { :col_sep => ",", :quote_char => "\"", :headers ...
0
votes
1answer
63 views

How to rescue from bad url

I have a method in my application that finds a photo from the og:image tag of a link that is submitted. In my create action, I use the method photo_form_url, described below. def photo_from_url(url) ...
0
votes
1answer
75 views

Rescue “RecordNotFound” errors in DelayedJob workers

I use DelayedJob to handle certain tasks in the background. For example, in my application a user can "like" a message, and when that happens the poster gets notified. This notification is handled in ...
0
votes
0answers
58 views

How to make ActiveRecord derived class to try reconnect when connection lost

I have class that derived from ActiveRecord::Base which I use it as model for remote resource. It looks like that: class User < ActiveRecord::Base establish_connection :remote_db ...
0
votes
2answers
82 views

What does the “=>” in “rescue Exception => e” do?

Given the example: def method_of_doom my_string = "I sense impending doom." my_string.ah_ha_i_called_a_nonexistent_method rescue NoMethodError => e: puts "PROBLEM: " + e.to_s rescue Exception: ...
0
votes
0answers
68 views

Creating arbitrary directory structures with Ruby Net::FTP

I'm trying to write a function for a backup script that creates arbitrary directories on a remote FTP server. Given a Net::FTP server object and a path, this code should cwd to that path on the remote ...
0
votes
1answer
77 views

Rescue NameError just in this class

I've got a Ruby script and I'm doing this module MyModule class MyClass def do_something begin deployer_object = ...
0
votes
1answer
121 views

catching all validation errors with mongoid

I tried doing this to catch all validation errors from a base class: rescue_from Mongoid::Errors::Validations, :with => :rescue_from_validations doesn't seem to work. Also tried this: ...
0
votes
1answer
206 views

Undefined method `first' for nil:NilClass

Sometimes I get this error, and I just want Rails to rescue/skip the error when it happens rather than stop the program completely. Is there a good way to do this? Below is my code: <% wiki = ...
0
votes
1answer
95 views

How to add rescue to simple uri parsing method

I have a simple method that uploads an image from a URL. def photo_from_url(url) if !Nokogiri::HTML(open(url)).css("meta[property='og:image']").blank? photo_url = ...
6
votes
4answers
147 views

What is wrong with this rescue example?

x = StandardError.new(:hello) y = StandardError.new(:hello) x == y # => true x === y # => true begin raise x rescue x puts "ok" # gets printed end begin raise x rescue y puts "ok" # ...
-1
votes
1answer
63 views

Catch-all rescue

In Ruby/Rails, is there a "catch-all" rescue statement that also allows for more specific rescue possibilities? I tried begin # something rescue URI::InvalidURIError # do something rescue ...
4
votes
4answers
161 views

General rescue throughout controller when id not found - RoR

I have stumbled upon a situation where my application looks for an id that does not exist in the database. An exception is thrown. Of course, this is a pretty standard situation for any web developer. ...
1
vote
2answers
78 views

Why is my rescue block not working?

I am using selenium webdriver and trying to get a page object to look at a page multiple times before it reports a test failure. My problem is that a am getting an error that is not being caught by ...
1
vote
1answer
126 views

ruby can't rescue or see abort from Thread.abort_on_exception

I need to immediately catch exceptions in threads and stop all threads, so I'm using abort_on_exception in my script. Unfortunately this means the exception is not raised to the parent thread - ...
0
votes
1answer
156 views

rails if else check fails then rescue

I have 2 methods in my controller for finding the user (notice the enabled_only scope): before_filter :find_user, :only => :show before_filter :find_any_user, :only => [:edit, :update, ...
0
votes
0answers
254 views

How can I catch database connection errors to serve basic page using unicorn?

I'm running on Heroku and using Unicorn. With Heroku/AWS's recent downtime, I found my site was not completely taken down (including the home page). Digging into the error, it looks like when ...
0
votes
0answers
61 views

Can't rescue SpawnError from background thread in open4

I am using open4 to make a system call from Ruby. I'm making the system call in a background thread because the program being launched has the occasional habit of going into a forever loop or ...
2
votes
1answer
98 views

Does the Ruby rescue statement modifier really don't work with require?

Does the Ruby rescue statement modifier really don't work with require? irb(main):001:0> require 'a' rescue nil LoadError: no such file to load -- a from (irb):1:in `require' from (irb):1 ...
4
votes
0answers
189 views

Ruby - catch all network exceptions [duplicate]

What's the best way to catch all network related problems? The exception is handled some layers above (it can be thrown from various places, and that's the right place to handle it) and I obviously ...
0
votes
2answers
416 views

How to rescue the error exception raised by the `constantize` method?

I am using Ruby on Rails 3.2.2 and I would like to properly rescue the following process flow by raising a "custom" error message: def rescue_method # sample_string.class # => String # ...
2
votes
3answers
539 views

Sidekiq authentication

I am using sidekiq in my rails application. By Default, Sidekiq can be accessed by anybody by appending "/sidekiq" after the url. I want to password protect / authenticate only the sidekiq part. How ...
1
vote
0answers
77 views

Rescue SubclassNotFound error in STI

Is there a best-practices or idiomatic way to rescue an ActiveRecord::SubclassNotFound error inside the model for the base class (Rails 2.3.8)? I'd really like to be able to do something like call ...
0
votes
0answers
110 views

How to install kernel-default package on SUSE 11 x64

After failed updating SUSE 11 x64 in YAST, my NEW kernel-default package damaged. "Repare Installed System" can only find the damage and try to re-install it. But because lack of internet ...
0
votes
2answers
339 views

Why ActiveRecord::StatementInvalid cannot be rescued in this Rails method?

Why I cannot rescue anything in the following method? def get_things begin things= @member.things.where("id>?",params[:id]) rescue ActiveRecord::StatementInvalid render( inline: ...
0
votes
1answer
521 views

Inconsistent Timeout::timeout and rescue Timeout::Error behavior

I'm using Timeout::timeout(1) for a process that takes longer than 1 second, though it only occasionally triggers a timeout. When it does, rescue captures it in different ways each time. Here's a ...
0
votes
0answers
85 views

ruby debugger quit and exit ignore ensure and at_exit hooks

If I stop in my application with the debugger and exit the debugger with exit, quit, exit! or q! (or kill), no ensure blocks are executed. Not even at_exit hooks are executed. It seems, the process ...
3
votes
2answers
516 views

Ruby ignores rescue ArgumentError

When I run the following, rescue seems to be ignored for ArgumentError. The ArgumentError error message from Ruby appears on the console, but my puts message does not. I tried rescue with TypeError ...
0
votes
1answer
100 views

Ignore Twitter Gem Exceptions

how do I rescue and ignore the exceptions thrown by twitter gem? what I want is this begin Twitter.update(@tweet) rescue Twitter::Error // continue action 1 else // continue action 1 end is ...
0
votes
1answer
166 views

Exception not caught by rescue block

The problem is in relation to the radis-rb gem. The exception is not caught by my rescue block and my app goes down. My code: begin redis = Redis.new puts "WTF?" rescue Exception puts ...
1
vote
1answer
714 views

How can Rails automatically rescue from ActiveRecord::RecordNotFound in development mode?

I am using the following piece of code on my ApplicationController : rescue_from ActiveRecord::RecordNotFound, :with => :not_found def not_found render :nothing => true, :status => ...
5
votes
5answers
465 views

Why does this rescue syntax work?

Ok so I have this method of an application I am working with and it works in production. My question why does this work? Is this new Ruby syntax? def edit load_elements(current_user) unless ...
0
votes
3answers
150 views

Ruby Exception - If Statement rescue doesn't handling exception

I everyone, I've some issue to handling exception in ruby. I doesn't understand why my statement doesn't work. Error : Couldn't find User with id=14 I want to redirect to the login page. def ...
0
votes
3answers
473 views

ruby does not look beyond the first rescue code?

From my understanding of the docs this general approach should work: begin try1 rescue try2 rescue try3 . . . rescue puts "Everybody failed, sorry man!" end However whenever I try to open up a ...
3
votes
1answer
275 views

rails 3.1: how can app handle different 'reasons' for ActiveRecord::RecordInvalid (for example, duplicate vs validation error)

In my app, I sometimes create a User on the fly, and a user's email must be a valid format, and be unique. I would like to redirect to different places depending on WHICH validation caused the error ...
2
votes
4answers
445 views

How to abort a Ruby script when raising an Exception?

Is it possible, in Ruby, to raise an Exception that will also automatically abort the program, ignoring any enclosing begin/rescue blocks?
0
votes
2answers
43 views

Is there a faster to determine which object is nil in a serial dots?

undefined method `[]=' for nil:NilClass code: a.b.c.d['test'].e['foo'] my solution: puts "got it: #{a.inspect}" if a.nil? puts "got it: #{a.b.inspect}" if a.b.nil? puts "got it: ...
0
votes
2answers
71 views

How do I rescue a method when there is nil user?

From time to time I have user.id == nil. And when this happens my lookup fails. What is the most practical way to rescue this code? and what do you typically return when this happens? def lookup ...
0
votes
1answer
1k views

Ruby rescue block or class

I seem to be reusing the same rescues. Would it be possible to have a rescue block? So instead of: while count != 0 do <<code>> rescue error1 <<code>> retry rescue error2 ...
0
votes
2answers
783 views

Ruby on Rails Facebook Graph API OAuth error #506 Duplicate status message

I have a Rails application that is posting to Facebook. I put a rescue to prevent the error of posting the same message twice. I would like to have my app just notify the user and move on, but I ...
0
votes
1answer
713 views

How do I force a Secondary to be a Primary when “priority” = 0 and “slaveDelay” = n to rebuild my data around that point?

Is that even possible? How else could I restore the data from a slaveDelay-Secondary? The only way I can think of is to shut down all the other running members of the replica set and copy the ...

1 2