Skip to content

Commit

Permalink
- correctly catch fatal errors and rethrow (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
guignont authored Nov 21, 2024
1 parent 8428ae6 commit bf708f0
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,10 @@ solve(Alien::ILinearSolver* solver)
else
return false;
}
catch(Arccore::FatalErrorException& e)
{
throw e;
}
catch(...)
{
return false;
Expand Down

0 comments on commit bf708f0

Please sign in to comment.