Skip to content

Instantly share code, notes, and snippets.

@taiansu
Created June 4, 2017 09:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taiansu/363a52d552a651c91a43a0ab9648694a to your computer and use it in GitHub Desktop.
Save taiansu/363a52d552a651c91a43a0ab9648694a to your computer and use it in GitHub Desktop.
defmodule RescueDemo do
def main do
data
|> wrapper_action
|> follow_up_function
end
def wrapper_action(data) do
try do
dangerous_action(data)
rescue
{:error, "some message"}
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment