Skip to content

Instantly share code, notes, and snippets.

@alco
Created May 5, 2014 18:16
Show Gist options
  • Save alco/28fd51a10a8c8120143f to your computer and use it in GitHub Desktop.
Save alco/28fd51a10a8c8120143f to your computer and use it in GitHub Desktop.
parent = self()
spawn(fn ->
try do
<do something nasty>
rescue
e -> send(parent, {:exception, e})
end
end)
receive do
{:exception, e} -> raise e
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment