From: guido Date: Sun, 6 Oct 2002 18:52:07 +0000 (+0000) Subject: Change some ExcInternalError to ExcNotImplemented X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=039e70043a23102c3e7bbdeb131cc662bf199a77;p=dealii-svn.git Change some ExcInternalError to ExcNotImplemented git-svn-id: https://svn.dealii.org/trunk@6616 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/grid/grid_generator.cc b/deal.II/deal.II/source/grid/grid_generator.cc index b7d5ba629b..9d45b7ba7b 100644 --- a/deal.II/deal.II/source/grid/grid_generator.cc +++ b/deal.II/deal.II/source/grid/grid_generator.cc @@ -164,7 +164,7 @@ void GridGenerator::hyper_cube_slit (Triangulation<1> &, const double, const double) { - Assert (false, ExcInternalError()); + Assert (false, ExcNotImplemented()); }; @@ -173,7 +173,7 @@ void GridGenerator::hyper_L (Triangulation<1> &, const double, const double) { - Assert (false, ExcInternalError()); + Assert (false, ExcNotImplemented()); }; @@ -182,7 +182,7 @@ void GridGenerator::hyper_ball (Triangulation<1> &, const Point<1> &, const double) { - Assert (false, ExcInternalError()); + Assert (false, ExcNotImplemented()); }; @@ -191,7 +191,7 @@ void GridGenerator::cylinder (Triangulation<1> &, const double, const double) { - Assert (false, ExcInternalError()); + Assert (false, ExcNotImplemented()); }; @@ -202,7 +202,7 @@ void GridGenerator::hyper_shell (Triangulation<1> &, const double, const unsigned int) { - Assert (false, ExcInternalError()); + Assert (false, ExcNotImplemented()); }; #endif