Skip to content

Instantly share code, notes, and snippets.

@D3MZ
Last active December 20, 2015 09:28
Show Gist options
  • Save D3MZ/6107628 to your computer and use it in GitHub Desktop.
Save D3MZ/6107628 to your computer and use it in GitHub Desktop.
dollar bang good for rescue
def save_errors
yield
rescue => e
{error: e}
end
save_errors {raise('REALLY BIG MASSIVE ERROR')} #programmer
raise('REALLY BIG MASSIVE ERROR') rescue {error:$!} #hacker
raise('REALLY BIG MASSIVE ERROR') rescue nil #retard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment