Skip to content

Instantly share code, notes, and snippets.

@mostlyobvious
Created July 2, 2011 23:47
Show Gist options
  • Save mostlyobvious/1061791 to your computer and use it in GitHub Desktop.
Save mostlyobvious/1061791 to your computer and use it in GitHub Desktop.
class MyError < StandardError; end
begin
raise "look ma, no NameError"
rescue MyError
undefined = "defined"
puts undefined
rescue Exception
puts undefined
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment