From: guido Date: Thu, 4 Mar 1999 16:35:11 +0000 (+0000) Subject: New exception ExcIndexRange(i,a,b) X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4bf271564d4e9929094b13d44b964cd5c10e59d;p=dealii-svn.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 << ")"); + };