dune-istl  2.5.0
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
Thrown when a solver aborts due to some problem.
Definition: istlexception.hh:43
Error specific to BCRSMatrix.
Definition: istlexception.hh:19
Definition: basearray.hh:19
The overflow error used during implicit BCRSMatrix construction was exhausted.
Definition: istlexception.hh:32
derive error class from the base class in common
Definition: istlexception.hh:16