From: Wolfgang Bangerth Date: Wed, 2 Apr 2025 17:01:42 +0000 (-0600) Subject: Improve an error message. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e1f0b7e1df2441dbdd5a133eee765c4d2b1839f;p=dealii.git Improve an error message. --- diff --git a/include/deal.II/lac/solver_minres.h b/include/deal.II/lac/solver_minres.h index a2340082e7..1e0acecfdb 100644 --- a/include/deal.II/lac/solver_minres.h +++ b/include/deal.II/lac/solver_minres.h @@ -117,7 +117,12 @@ public: /** * Exception */ - DeclException0(ExcPreconditionerNotDefinite); + DeclExceptionMsg(ExcPreconditionerNotDefinite, + "The preconditioner for MinRes must be a symmetric and " + "definite operator, even though MinRes can solve linear " + "systems with symmetric and *indefinite* operators. " + "During iterations, MinRes has detected that the " + "preconditioner is apparently not definite."); /** @} */ protected: