DUNE PDELab (git)

newtonerrors.hh
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_PDELAB_SOLVER_NEWTONERRORS_HH
4#define DUNE_PDELAB_SOLVER_NEWTONERRORS_HH
5
6#ifndef DOXYGEN
7
8namespace Dune::PDELab
9{
10 // Exception classes used in NewtonSolver
11 class NewtonError : public Exception {};
12 class NewtonDefectError : public NewtonError {};
13 class NewtonLinearSolverError : public NewtonError {};
14
15 // Exception classes used by interfaces within NewtonSolver
16 class TerminateError : public NewtonError {};
17 class LineSearchError : public NewtonError {};
18}
19
20#endif // DOXYGEN
21
22#endif
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.111.3 (Jul 15, 22:36, 2024)