From 0de2e0c3e7bfa0247797eab012dacba1e58061b2 Mon Sep 17 00:00:00 2001 From: Simon Sticko Date: Tue, 17 May 2022 09:00:54 +0200 Subject: [PATCH] Rename an exception To be consistent with the names of the other exceptions. --- source/non_matching/mesh_classifier.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/non_matching/mesh_classifier.cc b/source/non_matching/mesh_classifier.cc index 4ebae04587..d77ca8d40e 100644 --- a/source/non_matching/mesh_classifier.cc +++ b/source/non_matching/mesh_classifier.cc @@ -47,7 +47,7 @@ namespace NonMatching namespace MeshClassifierImplementation { DeclExceptionMsg( - ReclassifyNotCalled, + ExcReclassifyNotCalled, "The Triangulation has not been classified. You need to call the " "reclassify()-function before using this function."); @@ -430,7 +430,7 @@ namespace NonMatching const typename Triangulation::cell_iterator &cell) const { Assert(cell_locations.size() == triangulation->n_active_cells(), - internal::MeshClassifierImplementation::ReclassifyNotCalled()); + internal::MeshClassifierImplementation::ExcReclassifyNotCalled()); Assert(&cell->get_triangulation() == triangulation, internal::MeshClassifierImplementation::ExcTriangulationMismatch()); @@ -447,7 +447,7 @@ namespace NonMatching { AssertIndexRange(face_index, GeometryInfo::faces_per_cell); Assert(face_locations.size() == triangulation->n_raw_faces(), - internal::MeshClassifierImplementation::ReclassifyNotCalled()); + internal::MeshClassifierImplementation::ExcReclassifyNotCalled()); Assert(&cell->get_triangulation() == triangulation, internal::MeshClassifierImplementation::ExcTriangulationMismatch()); -- 2.39.5