dune-istl  2.6-git
istlexception.hh
Go to the documentation of this file.
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_ISTL_ISTLEXCEPTION_HH
4 #define DUNE_ISTL_ISTLEXCEPTION_HH
5 
6 #include <dune/common/exceptions.hh>
7 
8 namespace Dune {
9 
15  class ISTLError : public Dune::MathError {};
17 
20  : public ISTLError
21  {};
22 
24 
33  : public BCRSMatrixError
34  {};
35 
37 
43  class SolverAbort : public ISTLError {};
44 
47 } // end namespace
48 
49 #endif
Dune::ImplicitModeOverflowExhausted
The overflow error used during implicit BCRSMatrix construction was exhausted.
Definition: istlexception.hh:32
Dune::SolverAbort
Thrown when a solver aborts due to some problem.
Definition: istlexception.hh:43
Dune::BCRSMatrixError
Error specific to BCRSMatrix.
Definition: istlexception.hh:19
Dune
Definition: allocator.hh:7
Dune::ISTLError
derive error class from the base class in common
Definition: istlexception.hh:16