From bc2f687633f9bb36f8a2ab7288d26249dab254ae Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 13 Sep 2016 14:46:29 -0600 Subject: [PATCH] Add descriptions to two more exceptions. --- include/deal.II/base/data_out_base.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/include/deal.II/base/data_out_base.h b/include/deal.II/base/data_out_base.h index 38725b0040..258f0f9af1 100644 --- a/include/deal.II/base/data_out_base.h +++ b/include/deal.II/base/data_out_base.h @@ -2653,11 +2653,16 @@ public: /** * Exception */ - DeclException0 (ExcIncompatibleDatasetNames); + DeclExceptionMsg (ExcIncompatibleDatasetNames, + "You are trying to merge two sets of patches for which the " + "declared names of the variables do not match."); /** * Exception */ - DeclException0 (ExcIncompatiblePatchLists); + DeclExceptionMsg (ExcIncompatiblePatchLists, + "You are trying to merge two sets of patches for which the " + "number of subdivisions or the number of vector components " + "do not match."); /** * Exception */ -- 2.39.5