Skip to content

Instantly share code, notes, and snippets.

@ascendbruce
Created October 20, 2013 15:11
Show Gist options
  • Save ascendbruce/7070884 to your computer and use it in GitHub Desktop.
Save ascendbruce/7070884 to your computer and use it in GitHub Desktop.
Ruby throw catch example
error = catch(:error) do
throw :error, "params uuid required" if uuid.blank?
throw :error, "params lang required" unless params.include?("lang")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment