Created
November 15, 2018 21:06
-
-
Save peteristhegreat/64acc731554e857cd35e86dbbe59051a to your computer and use it in GitHub Desktop.
Julia Print exception stacktrace inside a catch statement
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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