Skip to content

Commit

Permalink
Fix exception error in RsmoothImplicit
Browse files Browse the repository at this point in the history
  • Loading branch information
zarquon42b committed Jul 16, 2024
1 parent 0ba8023 commit cb1b8c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Rsmooth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ RcppExport SEXP RsmoothImplicit(
);

} catch (std::exception& e) {
::Rf_error( e.what());
forward_exception_to_r( e );
return wrap(1);
} catch (...) {
::Rf_error("unknown exception");
Expand Down

0 comments on commit cb1b8c6

Please sign in to comment.