Skip to content

Instantly share code, notes, and snippets.

@lenary
Forked from caius/gist:1041260
Created June 22, 2011 21:43
Show Gist options
  • Save lenary/1041300 to your computer and use it in GitHub Desktop.
Save lenary/1041300 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
# only in a controller
def baz
raise ""
end
rescue_from StandardError
p "error"
end
baz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment