*/
#define DeclExceptionMsg(Exception, defaulttext) \
/** @ingroup Exceptions */ \
- /** @note The error text is: @code defaulttext @endcode */ \
+ /** @dealiiExceptionMessage{defaulttext} */ \
static dealii::ExceptionBase& Exception ()
/**
*/
#define DeclException1(Exception1, type1, outsequence) \
/** @ingroup Exceptions */ \
- /** @note The error text is: @code outsequence @endcode */ \
+ /** @dealiiExceptionMessage{outsequence} */ \
static dealii::ExceptionBase& Exception1 (type1 arg1)
*/
#define DeclException2(Exception2, type1, type2, outsequence) \
/** @ingroup Exceptions */ \
- /** @note The error text is: @code outsequence @endcode */ \
+ /** @dealiiExceptionMessage{outsequence} */ \
static dealii::ExceptionBase& Exception2 (type1 arg1, type2 arg2)
*/
#define DeclException3(Exception3, type1, type2, type3, outsequence) \
/** @ingroup Exceptions */ \
- /** @note The error text is: @code outsequence @endcode */ \
+ /** @dealiiExceptionMessage{outsequence} */ \
static dealii::ExceptionBase& Exception3 (type1 arg1, type2 arg2, type3 arg3)
*/
#define DeclException4(Exception4, type1, type2, type3, type4, outsequence) \
/** @ingroup Exceptions */ \
- /** @note The error text is: @code outsequence @endcode */ \
+ /** @dealiiExceptionMessage{outsequence} */ \
static dealii::ExceptionBase& Exception4 (type1 arg1, type2 arg2, type3 arg3, type4 arg4)
*/
#define DeclException5(Exception5, type1, type2, type3, type4, type5, outsequence) \
/** @ingroup Exceptions */ \
- /** @note The error text is: @code outsequence @endcode */ \
+ /** @dealiiExceptionMessage{outsequence} */ \
static dealii::ExceptionBase& Exception5 (type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5)
#endif /*ifndef DOXYGEN*/