Skip to content

Instantly share code, notes, and snippets.

@peteristhegreat
Created November 15, 2018 21:06
Show Gist options
  • Save peteristhegreat/64acc731554e857cd35e86dbbe59051a to your computer and use it in GitHub Desktop.
Save peteristhegreat/64acc731554e857cd35e86dbbe59051a to your computer and use it in GitHub Desktop.
Julia Print exception stacktrace inside a catch statement
try
some_dangerous_function()
catch e
showerror(STDERR, e, catch_stacktrace())
end
println("Reachable code! And still see the stack trace above!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment