From 78cea8cda111c8c35a5543d7178f65a1a52e05df Mon Sep 17 00:00:00 2001 From: guido Date: Fri, 6 Sep 2002 09:08:30 +0000 Subject: [PATCH] New exception ExcIteratorPastEnd git-svn-id: https://svn.dealii.org/trunk@6369 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/exceptions.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/deal.II/base/include/base/exceptions.h b/deal.II/base/include/base/exceptions.h index 59ef78c0f1..34924656e6 100644 --- a/deal.II/base/include/base/exceptions.h +++ b/deal.II/base/include/base/exceptions.h @@ -892,7 +892,15 @@ namespace StandardExceptions DeclException3 (ExcIndexRange, int, int, int, << "Index " << arg1 << " is not in [" << arg2 << "," << arg3 << "["); - + + /** + * This exception is thrown if the + * iterator you incremented or + * decremented was already at its + * final state. + */ + DeclException0 (ExcIteratorPastEnd); + /** * This exception works around a * design flaw in the -- 2.39.5