Rails' rescue_from
A little write up on rescue_from: rescue_from
Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!
A little write up on rescue_from: rescue_from
Comments
Nice! Didn’t know about ActiveSupport::Rescuable But I think using a private method is better than a block since you can override it in subclasses
It piles the handlers up anyway so even if you use a block in your ApplicationController than use another one in your FooController the later will be the one invoked.
Post a comment