Monthly Archives: September 2013

Intercepting Ruby exceptions

The way some Ruby applications catch exceptions makes it more difficult to debug the underlying issue. That is because a common pattern for handling an exception is this: begin   do_something_that_fails rescue SomeError   raise MyAppError.new "Something went wrong" end … Continue reading

Posted in Ruby | Tagged | Comments Off on Intercepting Ruby exceptions