From 556b18db8bcb41a076bc72955c1cb4a5da70c65b Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 16 Jan 2025 11:21:13 -0700 Subject: [PATCH] Fix an error message. --- include/deal.II/sundials/ida.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/sundials/ida.h b/include/deal.II/sundials/ida.h index a313acdcad..adf166512a 100644 --- a/include/deal.II/sundials/ida.h +++ b/include/deal.II/sundials/ida.h @@ -1069,8 +1069,8 @@ namespace SUNDIALS */ DeclException1(ExcIDAError, int, - << "One of the SUNDIALS IDA internal functions " - << " returned a negative error code: " << arg1 + << "One of SUNDIALS IDA's internal functions " + << "returned an error code: " << arg1 << ". Please consult SUNDIALS manual."); -- 2.39.5