From: kanschat Date: Wed, 14 Nov 2007 00:42:52 +0000 (+0000) Subject: add some ingroups X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=350a2e8e6e7e2617b71d886c47ed98f46458d554;p=dealii-svn.git add some ingroups git-svn-id: https://svn.dealii.org/trunk@15496 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/exceptions.h b/deal.II/base/include/base/exceptions.h index ccbb20de67..959cbb8e64 100644 --- a/deal.II/base/include/base/exceptions.h +++ b/deal.II/base/include/base/exceptions.h @@ -438,6 +438,7 @@ class Exception0 : public dealii::ExceptionBase {} /** * Declare an exception class derived from ExceptionBase with * one additional parameter. + * @ingroup Exceptions */ #define DeclException1(Exception1, type1, outsequence) \ class Exception1 : public dealii::ExceptionBase { \ @@ -913,9 +914,12 @@ namespace StandardExceptions * Special assertion for dimension mismatch. * * Since this is used very often and always repeats the arguments, we - *introduce this special assertion for ExcDimensionMismatch in order - *to keep the user codes shorter. - */ + * introduce this special assertion for ExcDimensionMismatch in order + * to keep the user codes shorter. + * + * @ingroup Exceptions + * @author Guido Kanschat 2007 +*/ #define AssertDimension(dim1,dim2) Assert((dim1) == (dim2), \ ExcDimensionMismatch((dim1),(dim2))) @@ -929,6 +933,9 @@ namespace StandardExceptions * Called wit arguments index and range it asserts * that index<range and throws * ExcIndexRange(index,0,range) if it fails. + * + * @ingroup Exceptions + * @author Guido Kanschat 2007 */ #define AssertIndexRange(index,range) Assert((index) < (range), \ ExcIndexRange((index),0,(range)))