From: hartmann Date: Mon, 20 Sep 2004 07:05:37 +0000 (+0000) Subject: Declare missing exception. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9249ffc41bae8ed2182a11574df5a1f08420481;p=dealii-svn.git Declare missing exception. git-svn-id: https://svn.dealii.org/trunk@9642 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/block_vector_base.h b/deal.II/lac/include/lac/block_vector_base.h index 5ac797a48d..168a7dfe33 100644 --- a/deal.II/lac/include/lac/block_vector_base.h +++ b/deal.II/lac/include/lac/block_vector_base.h @@ -969,7 +969,16 @@ class BlockVectorBase */ void equ (const value_type a, const BlockVectorBase& V, const value_type b, const BlockVectorBase& W); - + + /** @addtogroup Exceptions + * @{ */ + + /** + * Exception. + */ + DeclException0 (ExcNotMatchingBlockSizes); + //@} + protected: /** * Pointer to the array of components. @@ -2056,7 +2065,7 @@ BlockVectorBase:: operator == (const BlockVectorBase &v) const { Assert (block_indices == v.block_indices, - ExcNotmatchingBlockSizes()); + ExcNotMatchingBlockSizes()); for (unsigned int i=0;i