Skip to content
Snippets Groups Projects
Commit ae99f039 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[la.solver.istl] also catch FMatrixError

parent 91317132
No related branches found
No related tags found
1 merge request!68dailywork-ftschindler
......@@ -347,6 +347,10 @@ public:
DUNE_THROW(Exceptions::linear_solver_failed,
"The dune-istl backend reported: " << e.what() << "Those were the given options:\n\n"
<< opts);
} catch (FMatrixError& e) {
DUNE_THROW(Exceptions::linear_solver_failed,
"The dune-istl backend reported: " << e.what() << "Those were the given options:\n\n"
<< opts);
}
} // ... apply(...)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment