From f4bf271564d4e9929094b13d44b964cd5c10e59d Mon Sep 17 00:00:00 2001 From: guido Date: Thu, 4 Mar 1999 16:35:11 +0000 Subject: [PATCH] New exception ExcIndexRange(i,a,b) git-svn-id: https://svn.dealii.org/trunk@950 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/exceptions.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deal.II/base/include/base/exceptions.h b/deal.II/base/include/base/exceptions.h index b065f01e58..e2d9e716f6 100644 --- a/deal.II/base/include/base/exceptions.h +++ b/deal.II/base/include/base/exceptions.h @@ -567,6 +567,10 @@ namespace StandardExceptions { DeclException0 (ExcNotImplemented); DeclException0 (ExcInternalError); + DeclException3 (ExcIndexRange, int, int, int, + << "Index " << arg1 << " is not in [" + << arg2 << "," << arg3 << ")"); + }; -- 2.39.5