Skip to content

Instantly share code, notes, and snippets.

@caius
Created June 22, 2011 21:27
Show Gist options
  • Save caius/1041260 to your computer and use it in GitHub Desktop.
Save caius/1041260 to your computer and use it in GitHub Desktop.
def foo
begin
raise ""
rescue StandardError
p "error"
end
end
foo
def bar
raise ""
rescue StandardError
p "error"
end
bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment