Skip to content

Instantly share code, notes, and snippets.

@ravicious
Created January 13, 2015 21:06
Show Gist options
  • Save ravicious/27df6e5e97061f5f4d87 to your computer and use it in GitHub Desktop.
Save ravicious/27df6e5e97061f5f4d87 to your computer and use it in GitHub Desktop.
Code examples for my comment under Henrik's post http://thepugautomatic.com/2015/01/exception-class/
begin
class_a_instance.do_something
class_b_instance.do_something
rescue A::NotEnoughMoney
log_error
cleanup
rescue B::NotEnoughMoney
just_send_email
end
begin
class_a_instance.do_something
rescue NotEnoughMoney
log_error
cleanup
end
begin
class_b_instance.do_something
rescue NotEnoughMoney
just_send_email
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment