Loading...
Searching...
No Matches
Go to the documentation of this file.
4#ifndef DUNE_GRID_IO_FILE_GMSH_UTILITY_ERRORS_HH
5#define DUNE_GRID_IO_FILE_GMSH_UTILITY_ERRORS_HH
7#include <dune/common/exceptions.hh>
14namespace Dune::Impl::Gmsh
17 class Gmsh4Error :
public Exception {};
24#define GMSH4_ASSERT_MSG(cond, text) \
27 DUNE_THROW(Dune::Impl::Gmsh::Gmsh4Error, text); \
34#define GMSH4_ASSERT(cond) \
37 DUNE_THROW(Dune::Impl::Gmsh::Gmsh4Error, #cond); \