From: Simon Sticko Date: Tue, 17 May 2022 07:00:54 +0000 (+0200) Subject: Rename an exception X-Git-Tag: v9.4.0-rc1~206^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F13749%2Fhead;p=dealii.git Rename an exception To be consistent with the names of the other exceptions. --- 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());