We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JuliaCall does not throw errors correctly.
R> library(JuliaCall) R> f = julia_eval('f() = error("hi")') ┌ Warning: RCall.jl: Julia version 1.9.3 at location /nix/store/n2mf5wwcjasd5wlxinrz36y0g6l0w7q8-julia-bin-1.9.3/bin will be used. │ Loading setup script for JuliaCall... └ @ RCall ~/.julia/packages/RCall/gOwEW/src/io.jl:172 ┌ Warning: RCall.jl: Finish loading setup script for JuliaCall. └ @ RCall ~/.julia/packages/RCall/gOwEW/src/io.jl:172 R> f() <simpleError: ErrorException("hi")>
This should throw a real error instead of returning an error object.
Do you know a workaround?
The text was updated successfully, but these errors were encountered:
Also the error only includes the plain message. Often one also needs the stacktrace.
Please also include the stacktrace in the simpleError message when fixing this.
Sorry, something went wrong.
Turns out this is an RCall.jl problem
No branches or pull requests
JuliaCall does not throw errors correctly.
This should throw a real error instead of returning an error object.
Do you know a workaround?
The text was updated successfully, but these errors were encountered: