From: Guido Kanschat Date: Thu, 4 Mar 1999 16:35:11 +0000 (+0000) Subject: New exception ExcIndexRange(i,a,b) X-Git-Tag: v8.0.0~22308 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61c83cfe698e0355fddba2f932ee4fc4b462f716;p=dealii.git New exception ExcIndexRange(i,a,b) git-svn-id: https://svn.dealii.org/trunk@950 0785d39b-7218-0410-832d-ea1e28bc413d --- 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 << ")"); + };