From: kanschat Date: Tue, 13 Nov 2007 23:43:01 +0000 (+0000) Subject: put exceptions in module and documentation on todo list X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=317814312d6cc693f0e956f40cac4aec5d7d831e;p=dealii-svn.git put exceptions in module and documentation on todo list git-svn-id: https://svn.dealii.org/trunk@15493 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/fe/fe_values.h b/deal.II/deal.II/include/fe/fe_values.h index 42840193c7..b465618baa 100644 --- a/deal.II/deal.II/include/fe/fe_values.h +++ b/deal.II/deal.II/include/fe/fe_values.h @@ -1217,23 +1217,38 @@ class FEValuesBase : protected FEValuesData, unsigned int memory_consumption () const; /** - * Exception + * This exception is thrown if + * FEValuesBase is asked to + * return the value of a field + * which was not required by the + * UpdateFlags for this + * FEValuesBase. + * + * @ingroup Exceptions */ DeclException0 (ExcAccessToUninitializedField); /** - * Exception + * @todo Document this + * + * @ingroup Exceptions */ DeclException0 (ExcCannotInitializeField); /** - * Exception + * @todo Document this + * + * @ingroup Exceptions */ DeclException0 (ExcInvalidUpdateFlag); /** - * Exception + * @todo Document this + * + * @ingroup Exceptions */ DeclException0 (ExcFEDontMatch); /** - * Exception + * @todo Document this + * + * @ingroup Exceptions */ DeclException1 (ExcShapeFunctionNotPrimitive, int, @@ -1244,7 +1259,9 @@ class FEValuesBase : protected FEValuesData, << "Maybe you want to use the same function with the " << "_component suffix?"); /** - * Exception + * @todo Document this + * + * @ingroup Exceptions */ DeclException0 (ExcFENotPrimitive); @@ -2415,12 +2432,16 @@ class FESubfaceValues : public FEFaceValuesBase const FESubfaceValues & get_present_fe_values () const; /** - * Exception + * @todo Document this + * + * @ingroup Exceptions */ DeclException0 (ExcReinitCalledWithBoundaryFace); /** - * Exception + * @todo Document this + * + * @ingroup Exceptions */ DeclException0 (ExcFaceHasNoSubfaces);