From: Guido Kanschat Date: Thu, 4 Nov 1999 22:14:58 +0000 (+0000) Subject: new global exception ExcPureFunctionCalled X-Git-Tag: v8.0.0~21523 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f66c954aca6b332d01dfaa204ededba2a74cc8a;p=dealii.git new global exception ExcPureFunctionCalled git-svn-id: https://svn.dealii.org/trunk@1829 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/exceptions.h b/deal.II/base/include/base/exceptions.h index 8f3d6b76a6..e4293305b7 100644 --- a/deal.II/base/include/base/exceptions.h +++ b/deal.II/base/include/base/exceptions.h @@ -568,6 +568,8 @@ namespace StandardExceptions DeclException0 (ExcDivideByZero); DeclException0 (ExcNotImplemented); DeclException0 (ExcInternalError); + DeclException0 (ExcPureFunctionCalled); + DeclException2 (ExcDimensionMismatch, int, int, << "Dimension " << arg1 << " not equal to " << arg2); DeclException3 (ExcIndexRange, int, int, int,