"Fossies" - the Fresh Open Source Software Archive

Member "dune-typetree-2.8.0/dune/typetree/exceptions.hh" (31 Aug 2021, 500 Bytes) of package /linux/misc/dune/dune-typetree-2.8.0.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "exceptions.hh" see the Fossies "Dox" file reference documentation.

    1 // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
    2 // vi: set et ts=4 sw=2 sts=2:
    3 #ifndef DUNE_TYPETREE_EXCEPTIONS_HH
    4 #define DUNE_TYPETREE_EXCEPTIONS_HH
    5 
    6 #include <dune/common/exceptions.hh>
    7 
    8 /**
    9  * \file
   10  * \brief TypeTree-specific exceptions.
   11  */
   12 
   13 namespace Dune {
   14   namespace TypeTree {
   15 
   16     //! Base class for all TypeTree exceptions.
   17     class Exception
   18       : public Dune::Exception
   19     {};
   20 
   21   } // namespace TypeTree
   22 } // namespace Dune
   23 
   24 #endif // DUNE_TYPETREE_EXCEPTIONS_HH